Skip to content

Commit

Permalink
use latest versions of checkout/upload-artifact actions
Browse files Browse the repository at this point in the history
  • Loading branch information
timbergeron committed Feb 18, 2024
1 parent fc29b87 commit d2a3073
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
fail-fast: false

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install Dependencies
run: |
Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:
sudo ./build-linux.sh
- name: Upload artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: QSS-M
path: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
fail-fast: false

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: macOS
if: runner.os == 'macOS'
Expand All @@ -20,7 +20,7 @@ jobs:
./build-macos.sh
- name: Upload macOS artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: runner.os == 'macOS'
with:
name: QSS-M
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
platform: [w64, w32]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install Dependencies
run: |
Expand Down Expand Up @@ -46,7 +46,7 @@ jobs:
sudo ./build-${{ matrix.platform }}.sh
- name: Upload artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: QSS-M ${{ matrix.platform }}
path: |
Expand Down

0 comments on commit d2a3073

Please sign in to comment.