Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump actions/cache from 3 to 4 #33

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Bump actions/cache from 3 to 4
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 Jan 22, 2024
commit 068f4a1c4dc364e81466d51c8f7d7beba0debd60
2 changes: 1 addition & 1 deletion .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
elixir-version: 1.14
otp-version: 25
- name: Cache deps and build for mix
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
deps
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
otp-version: ${{ matrix.otp }}
elixir-version: ${{ matrix.elixir }}
- name: Cache deps and build for mix
uses: actions/cache@v3
uses: actions/cache@v4
id: cache-mix
with:
path: |
Expand All @@ -39,7 +39,7 @@ jobs:
${{ matrix.os }}-mix-${{ env.MIX_ENV }}-${{ matrix.elixir }}-${{ matrix.otp }}-
${{ matrix.os }}-mix-${{ env.MIX_ENV }}-
- name: Cache plt for dialyzer
uses: actions/cache@v3
uses: actions/cache@v4
id: cache-plt
with:
path: _build/${{ env.MIX_ENV }}/dialyxir_*
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
otp-version: ${{ matrix.otp }}
elixir-version: ${{ matrix.elixir }}
- name: Cache deps and build for mix
uses: actions/cache@v3
uses: actions/cache@v4
id: cache-mix
with:
path: |
Expand Down
Loading