From f654df57e85ac2f475ddd7f4870bcaff1334d1d7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 11:22:52 +0000 Subject: [PATCH] chore(deps): 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 | 8 ++++---- .github/workflows/release.yaml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d6b915f..a7c0d6b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: with: otp-version: ${{matrix.otp}} elixir-version: ${{matrix.elixir}} - - uses: actions/cache@v4 + - uses: actions/cache@v5 with: path: | deps @@ -48,7 +48,7 @@ jobs: with: otp-version: 28.x elixir-version: 1.18.x - - uses: actions/cache@v4 + - uses: actions/cache@v5 with: path: | deps @@ -77,7 +77,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/restore@v4 + uses: actions/cache/restore@v5 id: plt_cache with: key: | @@ -98,7 +98,7 @@ jobs: # By default, the GitHub Cache action will only save the cache if all steps in the job succeed, # so we separate the cache restore and save steps in case running dialyzer fails. - name: Save PLT cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: steps.plt_cache.outputs.cache-hit != 'true' id: plt_cache_save with: diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 603959a..2fd3751 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -29,7 +29,7 @@ jobs: elixir-version: ${{matrix.elixir}} if: ${{ steps.release.outputs.release_created }} - - uses: actions/cache@v4 + - uses: actions/cache@v5 id: cache if: ${{ steps.release.outputs.release_created }} with: