Skip to content

Commit

Permalink
Bump actions/cache from 3 to 4
Browse files Browse the repository at this point in the history
Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](actions/cache@v3...v4)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored and cpjolicoeur committed Apr 12, 2024
1 parent 734cef0 commit 48591cd
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Expand Up @@ -58,7 +58,7 @@ jobs:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
- name: Cache mix deps
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
deps
Expand All @@ -71,7 +71,7 @@ jobs:
shell: bash
run: echo "dir=$(npm config get cache)" >> ${GITHUB_OUTPUT}
- name: Get node deps
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ steps.npm-cache-dir.outputs.dir }}
key: nodejs-${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/v3.yml
Expand Up @@ -73,17 +73,17 @@ jobs:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
- name: Get Deps cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: deps/
key: deps-${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-${{ hashFiles('**/mix.lock') }}
- name: Get BUILD cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: _build/test/
key: build-${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-${{ hashFiles('**/mix.lock') }}
- name: Cache build artifacts
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
$HOME/.hex
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/v4.yml
Expand Up @@ -70,17 +70,17 @@ jobs:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
- name: Get Deps cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: deps/
key: deps-${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-${{ hashFiles('**/mix.lock') }}
- name: Get BUILD cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: _build/test/
key: build-${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-${{ hashFiles('**/mix.lock') }}
- name: Cache build artifacts
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
$HOME/.hex
Expand Down

0 comments on commit 48591cd

Please sign in to comment.