From d5123b9ffa8f5ea9ad3c0bd0769c8e5edde33296 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 08:14:01 +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/deploy-11ty-pages.yml | 4 ++-- .github/workflows/pre-commit.yml | 2 +- .github/workflows/test.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy-11ty-pages.yml b/.github/workflows/deploy-11ty-pages.yml index 54aa6a2..434bbf1 100644 --- a/.github/workflows/deploy-11ty-pages.yml +++ b/.github/workflows/deploy-11ty-pages.yml @@ -29,13 +29,13 @@ jobs: node-version: "18.x" - name: Persist npm cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package.json') }} - name: Persist Eleventy .cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ./.cache key: ${{ runner.os }}-eleventy-fetch-cache diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index e270aea..335a6a0 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -37,7 +37,7 @@ jobs: python-version-file: '.python-version' - name: Cache dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ env.pythonLocation }} key: ${{ runner.os }}-${{ needs.get-python-version.outputs.python-version }}-pip-${{ hashFiles('pyproject.toml') }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7269808..a2dd415 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -40,7 +40,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: Cache dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ env.pythonLocation }} key: ${{ runner.os }}-${{ matrix.python-version }}-pip-${{ hashFiles('pyproject.toml') }}