From 91075cf9025d29741554759d321b956a69deda2f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 05:03:00 +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/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b13383d..572b69b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,7 +36,7 @@ jobs: otp-version: ${{matrix.otp_version}} elixir-version: ${{matrix.elixir_version}} - - uses: actions/cache@v4 + - uses: actions/cache@v5 with: path: | deps @@ -72,7 +72,7 @@ jobs: elixir-version: 1.16 otp-version: 26 - - uses: actions/cache@v4 + - uses: actions/cache@v5 with: path: | deps @@ -85,7 +85,7 @@ jobs: - name: Restore PLT cache id: plt_cache_restore - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: key: | plts-${{ runner.os }}-${{ steps.beam.outputs.otp-version }}-${{ steps.beam.outputs.elixir-version }}-${{ hashFiles('**/mix.lock') }} @@ -101,7 +101,7 @@ jobs: - name: Save PLT cache id: plt_cache_save if: steps.plt_cache_restore.outputs.cache-hit != 'true' - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: key: | plts-${{ runner.os }}-${{ steps.beam.outputs.otp-version }}-${{ steps.beam.outputs.elixir-version }}-${{ hashFiles('**/mix.lock') }} @@ -126,7 +126,7 @@ jobs: elixir-version: 1.16 otp-version: 26 - - uses: actions/cache@v4 + - uses: actions/cache@v5 with: path: | deps