From 8d500ac13d3c819402dcc9270f359bc6f9a2decc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Jan 2026 12:01:20 +0000 Subject: [PATCH] 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](https://github.com/actions/cache/compare/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] --- .github/workflows/elixir.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/elixir.yml b/.github/workflows/elixir.yml index f2d0785..c6cfb1e 100644 --- a/.github/workflows/elixir.yml +++ b/.github/workflows/elixir.yml @@ -37,7 +37,7 @@ jobs: elixir-version: '1.19' otp-version: '28' - name: Restore dependencies cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: deps key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }} @@ -60,7 +60,7 @@ jobs: elixir-version: '1.19' otp-version: '28' - name: Restore dependencies cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: deps key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }} @@ -80,7 +80,7 @@ jobs: elixir-version: '1.19' otp-version: '28' - name: Restore dependencies cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: deps key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }} @@ -90,7 +90,7 @@ jobs: # Don't cache PLTs based on mix.lock hash, as Dialyzer can incrementally update even old ones # Cache key based on Elixir & Erlang version (also useful when running in matrix) - name: Restore PLT cache - uses: actions/cache@v4 + uses: actions/cache@v5 id: plt_cache with: key: |