Skip to content

Commit

Permalink
fix(actions): update actions/cache to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
JoffreyPlouvier committed Apr 10, 2024
1 parent cd010fd commit df15d43
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion actions/aws/promote-docker-artifact-image/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ outputs:
runs:
using: "composite"
steps:
- uses: actions/cache/restore@v3
- uses: actions/cache/restore@v4
id: dl-artifact
with:
key: ${{ inputs.artifact_name }}
Expand Down
2 changes: 1 addition & 1 deletion actions/aws/pull-docker-image/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ runs:
docker save ${{ steps.pull-docker.outputs.tag }} | gzip > ${{ steps.artifact-keys.outputs.path }}
- name: Save Docker image in Cache
uses: actions/cache/save@v3
uses: actions/cache/save@v4
with:
key: ${{ steps.artifact-keys.outputs.key }}
path: ${{ steps.artifact-keys.outputs.path }}

0 comments on commit df15d43

Please sign in to comment.