From 26420a60f347db13c518273df1f11c62ed007b08 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 20 May 2022 15:49:54 +0300 Subject: [PATCH] Bump actions/cache from 2 to 3 (#5549) Bumps [actions/cache](https://github.com/actions/cache) from 2 to 3. - [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/v2...v3) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/honggfuzz.yml | 4 ++-- .github/workflows/publish-docker-manual.yml | 2 +- .github/workflows/publish-docker-release.yml | 2 +- .github/workflows/publish-draft-release.yml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/honggfuzz.yml b/.github/workflows/honggfuzz.yml index a8c629f8363e..27fa0d9967f3 100644 --- a/.github/workflows/honggfuzz.yml +++ b/.github/workflows/honggfuzz.yml @@ -54,7 +54,7 @@ jobs: - name: Cache Seed id: cache-seed-round-trip - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: erasure-coding/fuzzer/hfuzz_workspace key: ${{ runner.os }}-erasure-coding @@ -100,7 +100,7 @@ jobs: - name: Cache Seed id: cache-seed-reconstruct - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: erasure-coding/fuzzer/hfuzz_workspace key: ${{ runner.os }}-erasure-coding diff --git a/.github/workflows/publish-docker-manual.yml b/.github/workflows/publish-docker-manual.yml index 08613e6b8e79..6dbccb2ab037 100644 --- a/.github/workflows/publish-docker-manual.yml +++ b/.github/workflows/publish-docker-manual.yml @@ -21,7 +21,7 @@ jobs: - name: Set up Docker Buildx uses: docker/setup-buildx-action@f211e3e9ded2d9377c8cadc4489a4e38014bc4c9 # v1.7 - name: Cache Docker layers - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: /tmp/.buildx-cache key: ${{ runner.os }}-buildx-${{ github.sha }} diff --git a/.github/workflows/publish-docker-release.yml b/.github/workflows/publish-docker-release.yml index f4996643d3f3..df726846e1fd 100644 --- a/.github/workflows/publish-docker-release.yml +++ b/.github/workflows/publish-docker-release.yml @@ -14,7 +14,7 @@ jobs: - name: Set up Docker Buildx uses: docker/setup-buildx-action@f211e3e9ded2d9377c8cadc4489a4e38014bc4c9 # v1.7 - name: Cache Docker layers - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: /tmp/.buildx-cache key: ${{ runner.os }}-buildx-${{ github.sha }} diff --git a/.github/workflows/publish-draft-release.yml b/.github/workflows/publish-draft-release.yml index f1050bc7f78e..7b7ad3919482 100644 --- a/.github/workflows/publish-draft-release.yml +++ b/.github/workflows/publish-draft-release.yml @@ -30,7 +30,7 @@ jobs: uses: actions/checkout@v3 - name: Cache target dir - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: "${{ github.workspace }}/runtime/${{ matrix.runtime }}/target" key: srtool-target-${{ matrix.runtime }}-${{ github.sha }}