Skip to content

Commit

Permalink
[ci] Update action versions to silence GitHub warnings
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Brown <[email protected]>
  • Loading branch information
Mexit authored and mcb30 committed Mar 18, 2024
1 parent 7f57dc3 commit ba55331
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install packages
run: |
sudo apt update
Expand All @@ -25,7 +25,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install packages
run: |
sudo apt update
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install packages
run: |
sudo apt update
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
steps:

- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install packages
run: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/qa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
echo "hash=${{ hashFiles('.rsync.list') }}" >> $GITHUB_OUTPUT
- name: Cache images
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: test/images
key: ${{ secrets.IMAGES_CACHE_KEY }}-${{ steps.key.outputs.hash }}
Expand All @@ -79,7 +79,7 @@ jobs:
steps:

- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install packages
run: |
Expand All @@ -96,7 +96,7 @@ jobs:
make
- name: Fetch images
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: test/images
key: ${{ secrets.IMAGES_CACHE_KEY }}-${{ needs.cache.outputs.hash }}
Expand All @@ -107,7 +107,7 @@ jobs:
- name: Upload outputs
if: ${{ always() }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: qa-results
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
steps:

- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Get version
run: |
Expand Down

0 comments on commit ba55331

Please sign in to comment.