From 7a0addd7422386cb7a8de68b8198a143c2f11a08 Mon Sep 17 00:00:00 2001 From: Andrew Clayton Date: Tue, 4 Feb 2025 02:42:42 +0000 Subject: ci: Update to actions/upload-artifact@v4 in cifuzz.yml We need to update to the latest version of actions/upload-artifact in cifuzz.yml due to the workflow failing because of Error: This request has been automatically failed because it uses a deprecated version of `actions/upload-artifact: v3`. Learn more: https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/ Signed-off-by: Andrew Clayton --- .github/workflows/cifuzz.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.github/workflows') diff --git a/.github/workflows/cifuzz.yml b/.github/workflows/cifuzz.yml index dc89c0b2..40729a50 100644 --- a/.github/workflows/cifuzz.yml +++ b/.github/workflows/cifuzz.yml @@ -27,7 +27,7 @@ jobs: fuzz-seconds: 300 output-sarif: true - name: Upload Crash - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: failure() && steps.build.outcome == 'success' with: name: artifacts -- cgit