Skip to content

Commit

Permalink
Include newest Node20 versions for Github actions
Browse files Browse the repository at this point in the history
Resolves: #753

Signed-off-by: Sergio Arroutbi <[email protected]>
  • Loading branch information
sarroutbi authored and ansasaki committed Feb 27, 2024
1 parent 2f7b3ad commit 9d4e406
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ jobs:
uses: actions/checkout@v4

- name: Log in to the Container registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ secrets.QUAY_USER }}
password: ${{ secrets.QUAY_TOKEN }}

- name: Generate docker metadata for keylime_agent
id: meta_agent
uses: docker/metadata-action@v4
uses: docker/metadata-action@v5
with:
images: |
${{ env.IMAGE_BASE }}/keylime_agent
Expand All @@ -41,7 +41,7 @@ jobs:
- name: Build and push agent image
id: build_agent
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
env:
VERSION: "${{ steps.meta_base.outputs.version }}"
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- 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
- uses: actions/upload-artifact@v4
with:
name: tarpaulin-report
path: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/submit-HEAD-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ jobs:
- name: List downloaded files.
run: ls
- name: Upload e2e_coverage report to Codecov with GitHub Action.
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v4
with:
files: e2e_coverage.txt
flags: e2e-testsuite
- name: Upload upstream_coverage report to Codecov with GitHub Action.
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v4
with:
files: upstream_coverage.xml
flags: upstream-unit-tests
4 changes: 2 additions & 2 deletions .github/workflows/submit-PR-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ jobs:
- name: List downloaded files.
run: ls
- name: Upload e2e_coverage.txt report to Codecov with GitHub Action.
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v4
with:
files: scripts/e2e_coverage.txt
flags: e2e-testsuite
- name: Upload upstream_coverage.xml report to Codecov with GitHub Action.
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v4
with:
files: scripts/upstream_coverage.xml
flags: upstream-unit-tests

0 comments on commit 9d4e406

Please sign in to comment.