Skip to content

Commit

Permalink
Bump version of GitHub Actions
Browse files Browse the repository at this point in the history
Use fixed version number in actions/upload-artifact
  • Loading branch information
wh201906 committed Mar 10, 2024
1 parent 4343744 commit 0b0d165
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-linux-multi-arch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

steps:
- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: SerialTest

Expand All @@ -45,7 +45,7 @@ jobs:
mkdir ${{ runner.temp }}/shadow_build_dir
- name: Build
uses: uraimo/run-on-arch-action@v2.6.0
uses: uraimo/run-on-arch-action@v2.7.1
id: build
with:
arch: ${{ matrix.arch }}
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
make -j$((`nproc` + 1)) && make clean
- name: Save artifact
uses: actions/upload-artifact@master
uses: actions/upload-artifact@v4
with:
name: ${{ env.ARTIFACT }}_${{ matrix.arch }}
path: ${{ runner.temp }}/shadow_build_dir/**/${{ env.ARTIFACT }}
2 changes: 1 addition & 1 deletion .github/workflows/build-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

steps:
- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: SerialTest

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
run: git config --global core.autocrlf input

- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Download QCustomPlot
run: |
Expand All @@ -59,7 +59,7 @@ jobs:
ls -l
- name: Save artifact
uses: actions/upload-artifact@master
uses: actions/upload-artifact@v4
with:
name: SerialTest-${{ matrix.sys }}
path: ./release/*

0 comments on commit 0b0d165

Please sign in to comment.