Skip to content

Commit

Permalink
workflows: Update checkout action to version 4
Browse files Browse the repository at this point in the history
Signed-off-by: Anderson Toshiyuki Sasaki <[email protected]>
  • Loading branch information
ansasaki committed Jan 30, 2024
1 parent 12c256b commit 63bb12d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Log in to the Container registry
uses: docker/login-action@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
name: Static code checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Check formatting
run: cargo fmt --all -- --check
- name: Check for panics
Expand All @@ -25,7 +25,7 @@ jobs:
name: Fedora tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Run tests
run: docker run --security-opt seccomp=tests/seccomp-profile.json -v $(pwd):/tmp/code_under_test -w /tmp/code_under_test quay.io/keylime/keylime-ci:latest dbus-run-session -- /tmp/code_under_test/tests/run.sh
- uses: actions/upload-artifact@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/submit-HEAD-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-22.04
name: Submit code coverage from merged PR
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install testing-farm script
run: pip3 -v install tft-cli
- name: Run tests on Testing Farm
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/submit-PR-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
run:
working-directory: scripts
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Wait for Packit tests to finish and download e2e_coverage.txt and upstream_coverage.xml files.
run: ./download_packit_coverage.sh
env:
Expand Down

0 comments on commit 63bb12d

Please sign in to comment.