From 742a0957f2db78bc891b3e29adb066a14f4bebf8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 12 Dec 2025 06:02:14 +0000 Subject: [PATCH] chore(deps): bump actions/cache from 3 to 5 Bumps [actions/cache](https://github.com/actions/cache) from 3 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/v3...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/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4f2dbc167..80372b89e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -43,7 +43,7 @@ jobs: run: ./scripts/deploy/stacks-deploy ${{ github.ref_name }} - name: Restore node_modules cache - uses: actions/cache@v3 + uses: actions/cache@v5 with: path: node_modules key: v13-node_modules-${{ hashFiles('package-lock.json') }} @@ -51,7 +51,7 @@ jobs: v13-node_modules- - name: Restore mix.lock cache - uses: actions/cache@v3 + uses: actions/cache@v5 with: path: _build key: v13-build_test-${{ hashFiles('mix.lock') }} @@ -67,7 +67,7 @@ jobs: run: mix semantic.release - name: Save node_modules cache - uses: actions/cache@v3 + uses: actions/cache@v5 with: path: node_modules key: v13-node_modules-${{ hashFiles('package-lock.json') }}