Skip to content

Commit

Permalink
update actions/cache to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
jgreat committed Feb 14, 2024
1 parent 3792d0d commit 1953739
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cache-cargo-packages/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ runs:
steps:
- name: Cache rust build binaries
id: rust_artifact_cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ inputs.path }}
# Key is a hash of all the Cargo.toml and Cargo.lock files.
Expand Down
2 changes: 1 addition & 1 deletion cache-go-binaries/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ runs:
steps:
- name: Cache build binaries
id: cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ inputs.path }}
# Key is a hash of all the .go, .p files.
Expand Down
2 changes: 1 addition & 1 deletion cache-rust-binaries/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ runs:

- name: Cache rust build binaries
id: rust_artifact_cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ inputs.path }}
# Key is a hash of all the .rs, .proto and Cargo.toml files.
Expand Down

0 comments on commit 1953739

Please sign in to comment.