From 59bda0853c38608cb73c7e578013243c5f78d4b3 Mon Sep 17 00:00:00 2001 From: Stefan Weil Date: Mon, 10 Jun 2024 06:43:23 +0200 Subject: [PATCH] Update deprecated Node.js 16 GitHub actions Signed-off-by: Stefan Weil --- .github/workflows/cifuzz.yml | 2 +- .github/workflows/sw.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cifuzz.yml b/.github/workflows/cifuzz.yml index 0cfa165941..cb5ff97a28 100644 --- a/.github/workflows/cifuzz.yml +++ b/.github/workflows/cifuzz.yml @@ -26,7 +26,7 @@ jobs: fuzz-seconds: 600 dry-run: false - name: Upload Crash - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: failure() && steps.build.outcome == 'success' with: name: artifacts diff --git a/.github/workflows/sw.yml b/.github/workflows/sw.yml index 96970f42eb..c744369086 100644 --- a/.github/workflows/sw.yml +++ b/.github/workflows/sw.yml @@ -88,14 +88,14 @@ jobs: - name: Upload Unit Test Results if: always() && matrix.os != 'windows-2022' - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: Test Results (${{ matrix.os }}) path: .sw/test/results.xml - name: Publish Test Report if: always() && matrix.os != 'windows-2022' - uses: mikepenz/action-junit-report@v3 + uses: mikepenz/action-junit-report@v4 with: check_name: test (${{ matrix.os }}) report_paths: .sw/test/results.xml