Skip to content

Commit 133be6a

Browse files
dependabot[bot]cpjolicoeur
authored andcommitted
Bump actions/cache from 4 to 5
Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 24ec6bd commit 133be6a

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
otp-version: ${{matrix.otp}}
7474
elixir-version: ${{matrix.elixir}}
7575
- name: Cache mix deps
76-
uses: actions/cache@v4
76+
uses: actions/cache@v5
7777
with:
7878
path: |
7979
deps
@@ -86,7 +86,7 @@ jobs:
8686
shell: bash
8787
run: echo "dir=$(npm config get cache)" >> ${GITHUB_OUTPUT}
8888
- name: Get node deps
89-
uses: actions/cache@v4
89+
uses: actions/cache@v5
9090
with:
9191
path: ${{ steps.npm-cache-dir.outputs.dir }}
9292
key: nodejs-${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}

.github/workflows/v3.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,17 +73,17 @@ jobs:
7373
otp-version: ${{matrix.otp}}
7474
elixir-version: ${{matrix.elixir}}
7575
- name: Get Deps cache
76-
uses: actions/cache@v4
76+
uses: actions/cache@v5
7777
with:
7878
path: deps/
7979
key: deps-${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-${{ hashFiles('**/mix.lock') }}
8080
- name: Get BUILD cache
81-
uses: actions/cache@v4
81+
uses: actions/cache@v5
8282
with:
8383
path: _build/test/
8484
key: build-${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-${{ hashFiles('**/mix.lock') }}
8585
- name: Cache build artifacts
86-
uses: actions/cache@v4
86+
uses: actions/cache@v5
8787
with:
8888
path: |
8989
$HOME/.hex

.github/workflows/v4.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,17 +71,17 @@ jobs:
7171
otp-version: ${{matrix.otp}}
7272
elixir-version: ${{matrix.elixir}}
7373
- name: Get Deps cache
74-
uses: actions/cache@v4
74+
uses: actions/cache@v5
7575
with:
7676
path: deps/
7777
key: deps-${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-${{ hashFiles('**/mix.lock') }}
7878
- name: Get BUILD cache
79-
uses: actions/cache@v4
79+
uses: actions/cache@v5
8080
with:
8181
path: _build/test/
8282
key: build-${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-${{ hashFiles('**/mix.lock') }}
8383
- name: Cache build artifacts
84-
uses: actions/cache@v4
84+
uses: actions/cache@v5
8585
with:
8686
path: |
8787
$HOME/.hex

.github/workflows/v5.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
otp-version: ${{matrix.otp}}
7070
elixir-version: ${{matrix.elixir}}
7171
- name: Cache mix deps
72-
uses: actions/cache@v4
72+
uses: actions/cache@v5
7373
with:
7474
path: |
7575
deps
@@ -82,7 +82,7 @@ jobs:
8282
shell: bash
8383
run: echo "dir=$(npm config get cache)" >> ${GITHUB_OUTPUT}
8484
- name: Get node deps
85-
uses: actions/cache@v4
85+
uses: actions/cache@v5
8686
with:
8787
path: ${{ steps.npm-cache-dir.outputs.dir }}
8888
key: nodejs-${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}

0 commit comments

Comments
 (0)