From 5e882ebe587c12ed536f1d3b39089075ee0288c6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 13:34:08 +0000 Subject: [PATCH] ci(deps): bump actions/cache from 5 to 6 Bumps [actions/cache](https://github.com/actions/cache) from 5 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/v5...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/ci-build-starters-matrix.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci-build-starters-matrix.yml b/.github/workflows/ci-build-starters-matrix.yml index eecdb5122..149da8960 100644 --- a/.github/workflows/ci-build-starters-matrix.yml +++ b/.github/workflows/ci-build-starters-matrix.yml @@ -92,7 +92,7 @@ jobs: echo "key=${{ runner.os }}-hugo-resources-${{ matrix.starter.name }}-$HASH" >> $GITHUB_OUTPUT - name: Cache Hugo resources (starter) - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ matrix.starter.path }}/resources/ key: ${{ steps.reskey.outputs.key }} @@ -179,7 +179,7 @@ jobs: run: node -e "require.resolve('@tailwindcss/cli/package.json')" - name: Cache Hugo resources (test) - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: test/resources/ key: ${{ runner.os }}-hugo-resources-test-${{ hashFiles('test/assets/**/*', 'test/config.yaml', 'test/package.json') }} @@ -226,7 +226,7 @@ jobs: run: node -e "require.resolve('@tailwindcss/cli/package.json')" - name: Cache Hugo resources (template) - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: templates/academic-cv/resources/ key: ${{ runner.os }}-hugo-resources-academic-latest-${{ hashFiles('templates/academic-cv/assets/**/*', 'templates/academic-cv/config/**/*', 'templates/academic-cv/hugoblox.yaml', 'templates/academic-cv/package.json') }} @@ -286,7 +286,7 @@ jobs: echo "version=$VERSION" >> $GITHUB_OUTPUT - name: Cache Hugo resources (test - min) - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: test/resources/ key: ${{ runner.os }}-hugo-resources-test-min-${{ steps.min.outputs.version }}-${{ hashFiles('test/assets/**/*', 'test/config.yaml', 'test/package.json') }}