From e530831dfc575ca502ea1bf4dab0ea271e832732 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Jan 2026 23:04:05 +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.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 67f0528..b4a97f2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -64,7 +64,7 @@ jobs: echo "build_cache_prefix_with_hash=${{env.build_cache_prefix}}-hash-${{hashFiles('rebar.lock')}}" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append - name: Restore cached build artifacts - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: _build key: ${{env.build_cache_prefix_with_hash}}-${{env.prev_github_run_number}} @@ -82,7 +82,7 @@ jobs: - name: Save build artifacts to cache if: always() - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: path: _build key: ${{env.build_cache_prefix_with_hash}}-${{github.run_number}}