From 8b6c4f2684cba119c632ffcd3e1a30a91f10f29d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 30 Jun 2026 09:23:56 +0000 Subject: [PATCH] chore(deps): Bump actions/cache from 4 to 6 Bumps [actions/cache](https://github.com/actions/cache) from 4 to 6. - [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...v6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/docs.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 1d1611c..03aba31 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -42,7 +42,7 @@ jobs: # keyed on the cell list / fetch script so a change re-downloads. Lets the # bake reuse the same cells across runs. - name: Cache demo ENC cells - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ${{ runner.temp }}/demo-cells key: demo-cells-${{ hashFiles('scripts/fetch-demo-cells.sh', 'Makefile') }} @@ -50,7 +50,7 @@ jobs: # Cache the S-52 PresLib "ECDIS Chart 1" source cells (the IHO draft zip is # fetched once and extracted), keyed on the fetch script so a change re-pulls. - name: Cache PresLib Chart 1 cells - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ${{ runner.temp }}/preslib-cells key: preslib-cells-${{ hashFiles('scripts/fetch-preslib-cells.sh') }}