[PATCH v2] .github/workflows/cifuzz.yml: update branch and upload-artifact
Stephen Smalley <[email protected]>
| Newsgroups | org.kernel.vger.selinux |
|---|---|
| Message-ID | <[email protected]> |
The cifuzz workflow was still using the old master branch, which was recently deleted. Switch it to the main branch. It was also using upload-artifactv3 which is no longer supported. Update to v4. Signed-off-by: Stephen Smalley <[email protected]> --- v2 updates the upload-artifact action version too. .github/workflows/cifuzz.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cifuzz.yml b/.github/workflows/cifuzz.yml index c4e592c5..c3b57e27 100644 --- a/.github/workflows/cifuzz.yml +++ b/.github/workflows/cifuzz.yml @@ -3,10 +3,10 @@ name: CIFuzz on: push: branches: - - master + - main pull_request: branches: - - master + - main jobs: Fuzzing: runs-on: ubuntu-latest @@ -33,7 +33,7 @@ jobs: report-unreproducible-crashes: true sanitizer: ${{ matrix.sanitizer }} - name: Upload Crash - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: failure() && steps.build.outcome == 'success' with: name: ${{ matrix.sanitizer }}-artifacts -- 2.55.0