Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(deps): bump actions/cache from 3.3.0 to 4.0.2 #132

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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
Expand Down
Loading