From e2f8c766a1dcf35b7b4ec66cd0c4c56a319aa012 Mon Sep 17 00:00:00 2001 From: Nitin Kumar Date: Tue, 30 Dec 2025 20:58:25 +0530 Subject: [PATCH] fix: Use non deprecated upload-artifact action version --- .github/workflows/cifuzz.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cifuzz.yml b/.github/workflows/cifuzz.yml index f3ab108..6f97e51 100644 --- a/.github/workflows/cifuzz.yml +++ b/.github/workflows/cifuzz.yml @@ -17,8 +17,8 @@ jobs: language: c++ fuzz-seconds: 300 - name: Upload Crash - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: failure() && steps.build.outcome == 'success' with: name: artifacts - path: ./out/artifacts \ No newline at end of file + path: ./out/artifacts