Skip to content

Commit 9d4e406

Browse files
sarroutbiansasaki
authored andcommitted
Include newest Node20 versions for Github actions
Resolves: #753 Signed-off-by: Sergio Arroutbi <[email protected]>
1 parent 2f7b3ad commit 9d4e406

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/container.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ jobs:
2222
uses: actions/checkout@v4
2323

2424
- name: Log in to the Container registry
25-
uses: docker/login-action@v2
25+
uses: docker/login-action@v3
2626
with:
2727
registry: ${{ env.REGISTRY }}
2828
username: ${{ secrets.QUAY_USER }}
2929
password: ${{ secrets.QUAY_TOKEN }}
3030

3131
- name: Generate docker metadata for keylime_agent
3232
id: meta_agent
33-
uses: docker/metadata-action@v4
33+
uses: docker/metadata-action@v5
3434
with:
3535
images: |
3636
${{ env.IMAGE_BASE }}/keylime_agent
@@ -41,7 +41,7 @@ jobs:
4141
4242
- name: Build and push agent image
4343
id: build_agent
44-
uses: docker/build-push-action@v4
44+
uses: docker/build-push-action@v5
4545
env:
4646
VERSION: "${{ steps.meta_base.outputs.version }}"
4747
with:

.github/workflows/rust.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- 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
31-
- uses: actions/upload-artifact@v3
31+
- uses: actions/upload-artifact@v4
3232
with:
3333
name: tarpaulin-report
3434
path: |

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ jobs:
2525
- name: List downloaded files.
2626
run: ls
2727
- name: Upload e2e_coverage report to Codecov with GitHub Action.
28-
uses: codecov/codecov-action@v2
28+
uses: codecov/codecov-action@v4
2929
with:
3030
files: e2e_coverage.txt
3131
flags: e2e-testsuite
3232
- name: Upload upstream_coverage report to Codecov with GitHub Action.
33-
uses: codecov/codecov-action@v2
33+
uses: codecov/codecov-action@v4
3434
with:
3535
files: upstream_coverage.xml
3636
flags: upstream-unit-tests

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ jobs:
2020
- name: List downloaded files.
2121
run: ls
2222
- name: Upload e2e_coverage.txt report to Codecov with GitHub Action.
23-
uses: codecov/codecov-action@v2
23+
uses: codecov/codecov-action@v4
2424
with:
2525
files: scripts/e2e_coverage.txt
2626
flags: e2e-testsuite
2727
- name: Upload upstream_coverage.xml report to Codecov with GitHub Action.
28-
uses: codecov/codecov-action@v2
28+
uses: codecov/codecov-action@v4
2929
with:
3030
files: scripts/upstream_coverage.xml
3131
flags: upstream-unit-tests

0 commit comments

Comments
 (0)