From 546878b5cfb4ac6d15ca02e614d3b4973fe74db3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 23 May 2026 15:31:50 +0000 Subject: [PATCH] Bump actions/cache from 4.2.0 to 5.0.5 Bumps [actions/cache](https://github.com/actions/cache) from 4.2.0 to 5.0.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/1bd1e32a3bdc45362d1e726936510720a7c30a57...27d5ce7f107fe9357f9df03efb73ab90386fccae) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 5.0.5 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b6685b2..f61d85a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -65,14 +65,14 @@ jobs: mix local.rebar --force - name: Cache npm - uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0 + uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 with: path: ~/.npm key: ${{ runner.os }}-npm-${{ hashFiles('assets/package-lock.json') }} restore-keys: ${{ runner.os }}-npm- - name: Cache deps and _build - uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0 + uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 with: path: | deps @@ -81,7 +81,7 @@ jobs: restore-keys: ${{ runner.os }}-mix- - name: Cache dialyzer PLTs - uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0 + uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 with: path: priv/plts key: ${{ runner.os }}-plt-${{ hashFiles('mix.lock') }} @@ -158,7 +158,7 @@ jobs: mix local.rebar --force - name: Cache npm - uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0 + uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 with: path: ~/.npm key: ${{ runner.os }}-npm-${{ hashFiles('assets/package-lock.json') }} @@ -167,7 +167,7 @@ jobs: # Keyed on MIX_ENV so the dev build artefacts don't clobber the build # job's test PLT/_build cache (different env, different compiled output). - name: Cache deps and _build - uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0 + uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 with: path: | deps @@ -183,7 +183,7 @@ jobs: working-directory: assets - name: Cache Playwright browsers - uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0 + uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 with: path: ~/.cache/ms-playwright key: ${{ runner.os }}-playwright-${{ hashFiles('assets/package-lock.json') }}