Re: [PATCH v2] .github/workflows/cifuzz.yml: update branch and upload-artifact
Stephen Smalley <[email protected]>
| Newsgroups | org.kernel.vger.selinux |
|---|---|
| Message-ID | <CAEjxPJ4ZGDkQE2eiQ-PUFJ_qG5aHEOE+w4GMh+qXNuNmPMSpqw@mail.gmail.com> |
On Tue, Aug 4, 2026 at 8:25 AM Stephen Smalley <[email protected]> wrote: > > 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]> Since this obviously hasn't been running for some time (was never updated when we switched from master to main), it would be good if someone could confirm whether we actually still need or care about it. > --- > 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 >