From d22849d37352efad85e47c92b89094e6c1210db6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 11 Dec 2025 22:12:16 +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_v26.0.yml | 2 +- .github/workflows/ci_v27.0.yml | 2 +- .github/workflows/ci_v27.1.yml | 2 +- .github/workflows/ci_v28.0.yml | 6 +++--- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci_v26.0.yml b/.github/workflows/ci_v26.0.yml index 3048581..4296a28 100644 --- a/.github/workflows/ci_v26.0.yml +++ b/.github/workflows/ci_v26.0.yml @@ -91,7 +91,7 @@ jobs: elixir-version: ${{matrix.elixir}} - name: Cache dependencies/builds - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | deps diff --git a/.github/workflows/ci_v27.0.yml b/.github/workflows/ci_v27.0.yml index 9a2f3db..28334eb 100644 --- a/.github/workflows/ci_v27.0.yml +++ b/.github/workflows/ci_v27.0.yml @@ -91,7 +91,7 @@ jobs: elixir-version: ${{matrix.elixir}} - name: Cache dependencies/builds - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | deps diff --git a/.github/workflows/ci_v27.1.yml b/.github/workflows/ci_v27.1.yml index 084af47..d127f86 100644 --- a/.github/workflows/ci_v27.1.yml +++ b/.github/workflows/ci_v27.1.yml @@ -91,7 +91,7 @@ jobs: elixir-version: ${{matrix.elixir}} - name: Cache dependencies/builds - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | deps diff --git a/.github/workflows/ci_v28.0.yml b/.github/workflows/ci_v28.0.yml index e90b490..2f7e6e5 100644 --- a/.github/workflows/ci_v28.0.yml +++ b/.github/workflows/ci_v28.0.yml @@ -91,7 +91,7 @@ jobs: elixir-version: ${{matrix.elixir}} - name: Cache dependencies/builds - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | deps @@ -131,7 +131,7 @@ jobs: - name: Restore PLT cache id: plt_cache - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: key: | plt-${{ runner.os }}-${{ steps.beam.outputs.otp-version }}-${{ steps.beam.outputs.elixir-version }}-${{ hashFiles('**/mix.lock') }} @@ -147,7 +147,7 @@ jobs: - name: Save PLT cache id: plt_cache_save - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: ${{ steps.plt_cache.outputs.cache-hit != 'true' && matrix.lint }} with: key: |