Skip to content

[GHA] Bump actions/* for CI workflow #223

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 3, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
apt-get update && apt-get install -yq build-essential autotools-dev lsb-release pkg-config automake autoconf libtool-bin clang-tools-7
apt-get install -yq cmake uuid-dev libssl-dev
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- run: pwd
- id: scan_build
run: ./scan_build.sh
Expand All @@ -41,7 +41,7 @@ jobs:

- name: Upload artifacts
if: failure()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ steps.tar.outputs.ARTIFACT }}-${{ github.sha }}-${{ github.run_id }}
path: ${{ steps.tar.outputs.ARTIFACT_PATH }}
Expand All @@ -60,13 +60,13 @@ jobs:
image: debian:buster
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: run tests
id: tests
run: ./run_tests.sh
- name: Upload artifacts
if: failure()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: test-artifacts-${{ github.sha }}-${{ github.run_id }}.html
path: ${{ steps.tests.outputs.TEST_ARTIFACT_FILE }}
Expand Down