diff --git a/.github/workflows/cifuzz.yml b/.github/workflows/cifuzz.yml index 3e120e4da1c..3616e139cfc 100644 --- a/.github/workflows/cifuzz.yml +++ b/.github/workflows/cifuzz.yml @@ -18,7 +18,7 @@ jobs: fuzz-seconds: 600 dry-run: false - name: Upload Crash - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v4 if: failure() && steps.build.outcome == 'success' with: name: artifacts diff --git a/.github/workflows/multiarch.yml b/.github/workflows/multiarch.yml index 3e4647988c9..f8217e91e24 100644 --- a/.github/workflows/multiarch.yml +++ b/.github/workflows/multiarch.yml @@ -31,13 +31,13 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: recursive # Cache the compiler cache - name: Cache the compiler cache - uses: actions/cache@v3 + uses: actions/cache@v4 if: endsWith(matrix.compiler, '-qemu-cross') with: path: ccache diff --git a/.github/workflows/unittests.yml b/.github/workflows/unittests.yml index f9782714eb2..70bb395b433 100644 --- a/.github/workflows/unittests.yml +++ b/.github/workflows/unittests.yml @@ -58,12 +58,12 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: recursive - name: Cache the compiler cache - uses: actions/cache@v3 + uses: actions/cache@v4 if: endsWith(matrix.compiler, '-qemu-cross') with: path: ccache @@ -103,7 +103,7 @@ jobs: run: script -e unit_tests.log -c 'sh -x scripts/build/do_build.sh DEFS_EXTRA_OPTS="-DUNIT_TESTS -fPIE -fPIC"' - name: Collect test logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: unit_tests-logs_${{ matrix.os }}_${{ matrix.compiler }} path: |