From efa8b699faaffc07ab5a988fd294f61f75031f52 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Dec 2025 11:07:08 +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] --- action.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/action.yml b/action.yml index 59b0a50..b2acd34 100644 --- a/action.yml +++ b/action.yml @@ -75,7 +75,7 @@ runs: OTP_VERSION: ${{ steps.set-otp-version.outputs.otp-version }} - name: Restore application build cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: _build/${{ env.MIX_ENV }} key: build-${{ steps.set-shared-cache-key.outputs.shared-cache-key }}-${{ env.MIX_ENV }}-${{ hashFiles('**/mix.lock') }} @@ -83,7 +83,7 @@ runs: build-${{ steps.set-shared-cache-key.outputs.shared-cache-key }}-${{ env.MIX_ENV }}- - name: Restore project dependencies cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: deps key: deps-${{ steps.set-shared-cache-key.outputs.shared-cache-key }}-${{ hashFiles('**/mix.lock') }} @@ -91,7 +91,7 @@ runs: deps-${{ steps.set-shared-cache-key.outputs.shared-cache-key }}- - name: Restore Hex package manager cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.hex key: hex-${{ steps.set-shared-cache-key.outputs.shared-cache-key }}-${{ hashFiles('**/mix.lock') }}