From ade0acf5dba44f570813d77394fe3ec91ceeb9ae Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 3 Jul 2025 04:22:32 +0000 Subject: [PATCH] chore(deps): 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](https://github.com/actions/cache/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/elixir.yml | 8 ++++---- .github/workflows/release.yml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/elixir.yml b/.github/workflows/elixir.yml index 3ce561f5..8cf751ea 100644 --- a/.github/workflows/elixir.yml +++ b/.github/workflows/elixir.yml @@ -44,7 +44,7 @@ jobs: # Step: Define how to cache deps. Restores existing cache if present. - name: Cache deps id: cache-deps - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | apps/**/deps @@ -96,7 +96,7 @@ jobs: # Step: Define how to cache deps. Restores existing cache if present. - name: Cache deps id: cache-deps - uses: actions/cache@v3 + uses: actions/cache@v4 env: cache-name: cache-elixir-deps-1 with: @@ -111,7 +111,7 @@ jobs: # Step: Create dialyzer .plt files if they're not present - name: Cache dialyzer plt files id: cache-plt - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: "priv/plts" key: expert-plts-2-${{ env.DEFAULT_OTP }}-${{ env.DEFAULT_ELIXIR }}-${{ hashFiles('apps/**/mix.lock' ) }}-${{ github.run_id }} @@ -177,7 +177,7 @@ jobs: # Step: Define how to cache deps. Restores existing cache if present. - name: Cache deps id: cache-deps - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | apps/**/deps diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e714ab11..927a5e4e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -23,7 +23,7 @@ jobs: - name: Cache deps id: cache-deps - uses: actions/cache@v3 + uses: actions/cache@v4 env: cache-name: cache-elixir-deps with: