Skip to content

Commit 63bb12d

Browse files
committed
workflows: Update checkout action to version 4
Signed-off-by: Anderson Toshiyuki Sasaki <[email protected]>
1 parent 12c256b commit 63bb12d

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/container.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v3
22+
uses: actions/checkout@v4
2323

2424
- name: Log in to the Container registry
2525
uses: docker/login-action@v2

.github/workflows/rust.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
name: Static code checks
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1919
- name: Check formatting
2020
run: cargo fmt --all -- --check
2121
- name: Check for panics
@@ -25,7 +25,7 @@ jobs:
2525
name: Fedora tests
2626
runs-on: ubuntu-latest
2727
steps:
28-
- uses: actions/checkout@v3
28+
- uses: actions/checkout@v4
2929
- name: Run tests
3030
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
3131
- uses: actions/upload-artifact@v3

.github/workflows/submit-HEAD-coverage.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-22.04
1111
name: Submit code coverage from merged PR
1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v4
1414
- name: Install testing-farm script
1515
run: pip3 -v install tft-cli
1616
- name: Run tests on Testing Farm

.github/workflows/submit-PR-coverage.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
run:
1212
working-directory: scripts
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
- name: Wait for Packit tests to finish and download e2e_coverage.txt and upstream_coverage.xml files.
1616
run: ./download_packit_coverage.sh
1717
env:

0 commit comments

Comments
 (0)