From a62e19b8c935942139fa803925c240996ca5ead9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 28 May 2024 04:01:49 +0000 Subject: [PATCH] feat(deps): bump actions/cache from 3.3.0 to 4.0.2 Bumps [actions/cache](https://github.com/actions/cache) from 3.3.0 to 4.0.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/v3.3.0...v4.0.2) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/pr.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index 2d0e07e..db4612a 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -26,7 +26,7 @@ jobs: - name: save docker image for cache run: mkdir -p image/ && docker save -o image/image.tar image:${{ steps.vars.outputs.alpine_version }} - name: cache docker image - uses: actions/cache@v3.3.0 + uses: actions/cache@v4.0.2 with: path: image/ key: ${{ runner.os }}-docker-${{ github.sha }} @@ -41,14 +41,14 @@ jobs: id: vars run: echo ::set-output name=alpine_version::$(grep '^FROM alpine' Dockerfile | cut -d ' ' -f 2 | cut -d ':' -f 2) - name: load cached docker image - uses: actions/cache@v3.3.0 + uses: actions/cache@v4.0.2 with: path: image/ key: ${{ runner.os }}-docker-${{ github.sha }} - name: load cached docker container run: docker load -i image/image.tar - name: cached scan db - uses: actions/cache@v3.3.0 + uses: actions/cache@v4.0.2 with: path: vulndb/ key: trivy-vulndb