From 727add7e75153ddec3e1ed6df218c6fe761f6805 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 11 Apr 2026 16:23:07 +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 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a76d8a3..ed19a96 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -54,7 +54,7 @@ jobs: elixir-version: '1.19.5' - name: cache mix deps and build - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | server/deps @@ -65,7 +65,7 @@ jobs: ${{ runner.os }}-mix- - name: cache hex registry - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.hex key: ${{ runner.os }}-hex-${{ hashFiles('server/mix.lock') }} @@ -108,7 +108,7 @@ jobs: bun-version: latest - name: cache bun install - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.bun/install/cache key: ${{ runner.os }}-bun-${{ hashFiles('landing/bun.lock') }}