Skip to content

Commit 37fbfab

Browse files
Bump actions/cache from 5.0.5 to 6.1.0
Bumps [actions/cache](https://github.com/actions/cache) from 5.0.5 to 6.1.0. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v5.0.5...v6.1.0) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 6.1.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent ce849a6 commit 37fbfab

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -79,31 +79,31 @@ runs:
7979
OTP_VERSION: ${{ steps.set-otp-version.outputs.otp-version }}
8080

8181
- name: Restore application build cache
82-
uses: actions/cache@v5.0.5
82+
uses: actions/cache@v6.1.0
8383
with:
8484
path: _build/${{ env.MIX_ENV }}
8585
key: build-${{ steps.set-shared-cache-key.outputs.shared-cache-key }}-${{ env.MIX_ENV }}-${{ hashFiles('**/mix.lock') }}
8686
restore-keys: |
8787
build-${{ steps.set-shared-cache-key.outputs.shared-cache-key }}-${{ env.MIX_ENV }}-
8888
8989
- name: Restore project dependencies cache
90-
uses: actions/cache@v5.0.5
90+
uses: actions/cache@v6.1.0
9191
with:
9292
path: deps
9393
key: deps-${{ steps.set-shared-cache-key.outputs.shared-cache-key }}-${{ hashFiles('**/mix.lock') }}
9494
restore-keys: |
9595
deps-${{ steps.set-shared-cache-key.outputs.shared-cache-key }}-
9696
9797
- name: Restore Hex package manager cache
98-
uses: actions/cache@v5.0.5
98+
uses: actions/cache@v6.1.0
9999
with:
100100
path: ~/.hex
101101
key: hex-${{ steps.set-shared-cache-key.outputs.shared-cache-key }}-${{ hashFiles('**/mix.lock') }}
102102
restore-keys: |
103103
hex-${{ steps.set-shared-cache-key.outputs.shared-cache-key }}-
104104
105105
- name: Restore Rebar build tool cache
106-
uses: actions/cache@v5.0.5
106+
uses: actions/cache@v6.1.0
107107
with:
108108
path: ~/.cache/rebar3
109109
key: rebar3-${{ steps.set-shared-cache-key.outputs.shared-cache-key }}-${{ hashFiles('**/mix.lock') }}

0 commit comments

Comments
 (0)