From 809ad3a80c8935218e393687e750dab09e450a63 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 1 Nov 2024 06:06:11 +0000 Subject: [PATCH] chore(deps): bump actions/cache from 4.0.2 to 4.1.2 Bumps [actions/cache](https://github.com/actions/cache) from 4.0.2 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/v4.0.2...v4.1.2) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/canary.yaml | 2 +- .github/workflows/release.yaml | 2 +- .github/workflows/reusable-release.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/canary.yaml b/.github/workflows/canary.yaml index d65878b8d84b..d5a587335f9e 100644 --- a/.github/workflows/canary.yaml +++ b/.github/workflows/canary.yaml @@ -25,7 +25,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Restore Trivy binaries from cache - uses: actions/cache@v4.0.2 + uses: actions/cache@v4.1.2 with: path: dist/ key: ${{ runner.os }}-bins-${{github.workflow}}-${{github.sha}} diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index b830d044768e..46a441fe870d 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -24,7 +24,7 @@ jobs: fetch-depth: 0 - name: Restore Trivy binaries from cache - uses: actions/cache@v4.0.2 + uses: actions/cache@v4.1.2 with: path: dist/ key: ${{ runner.os }}-bins-${{github.workflow}}-${{github.sha}} diff --git a/.github/workflows/reusable-release.yaml b/.github/workflows/reusable-release.yaml index 8f5d26a52922..ec79e1f340be 100644 --- a/.github/workflows/reusable-release.yaml +++ b/.github/workflows/reusable-release.yaml @@ -128,7 +128,7 @@ jobs: public.ecr.aws/aquasecurity/trivy:canary - name: Cache Trivy binaries - uses: actions/cache@v4.0.2 + uses: actions/cache@v4.1.2 with: path: dist/ # use 'github.sha' to create a unique cache folder for each run.