Skip to content

Commit

Permalink
github actions: upgrade to checkout version 3
Browse files Browse the repository at this point in the history
Version 2 of the checkout action produces a warning, upgrading to
version 3.
Also, set the jobs to not fail fast as this cancels all jobs after the
first failure.

Change-Id: I6f80aeae400104a188615444ca3bdbbcc8817898
Signed-off-by: Eitan Raviv <[email protected]>
  • Loading branch information
erav authored and sandrobonazzola committed Feb 14, 2023
1 parent 1bb7ee1 commit cd024ed
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
# We must fetch at least the immediate parents so that if this is
# a pull request then we can checkout the head.
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/containers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
matrix:
container: [ functional, integration, unit ]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install dependencies
run: |
sudo apt update
Expand All @@ -46,7 +46,7 @@ jobs:
matrix:
distro: [ centos-8, centos-9, alma-9 ]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install dependencies
run: |
sudo apt update
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/network.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ jobs:
IMAGE_TAG: ${{ matrix.tag }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
type: [ unit, integration, functional ]
tag: [ alma-9, centos-8 ]
Expand All @@ -36,7 +37,7 @@ jobs:
- type: integration
tag: centos-9
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install dependencies
run: |
sudo apt update
Expand Down

0 comments on commit cd024ed

Please sign in to comment.