From f39716b0f9da13ec920a43359f3352c4502f6de3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 28 Nov 2024 07:50:44 +0000 Subject: [PATCH] Bump actions/cache from 4.0.0 to 4.1.2 Bumps [actions/cache](https://github.com/actions/cache) from 4.0.0 to 4.1.2. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/13aacd865c20de90d75de3b17ebe84f7a17d57d2...6849a6489940f00c2f30c0fb92c6274307ccb58a) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/nightlyfuzz.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nightlyfuzz.yml b/.github/workflows/nightlyfuzz.yml index 7becbe73..67bb2114 100644 --- a/.github/workflows/nightlyfuzz.yml +++ b/.github/workflows/nightlyfuzz.yml @@ -28,7 +28,7 @@ jobs: run: echo "corpus_dir=$(go env GOCACHE)/fuzz" >> $GITHUB_OUTPUT shell: "bash" - name: "Restore corpus" - uses: "actions/cache/restore@13aacd865c20de90d75de3b17ebe84f7a17d57d2" # v4.0.0 + uses: "actions/cache/restore@6849a6489940f00c2f30c0fb92c6274307ccb58a" # v4.1.2 id: "restore-corpus" with: path: "${{ steps.get-corpus-dir.outputs.corpus_dir }}" @@ -44,7 +44,7 @@ jobs: if: failure() run: find . -type f|fgrep '/testdata/fuzz/'|while read f; do echo $f; cat $f; done - name: "Save corpus" - uses: "actions/cache/save@13aacd865c20de90d75de3b17ebe84f7a17d57d2" # v4.0.0 + uses: "actions/cache/save@6849a6489940f00c2f30c0fb92c6274307ccb58a" # v4.1.2 # We save also on failure, so that we can keep the valuable corpus generated that led to finding a crash. # If the corpus gets clobbered for any reason, we can remove the offending cache from the Github UI. if: always()