From 607e6327d126ccb8d6b4ce3b7c56cff347e7bada Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 08:23:34 +0000 Subject: [PATCH] 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/generateclasses.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/generateclasses.yaml b/.github/workflows/generateclasses.yaml index 205ae3cb..29688803 100644 --- a/.github/workflows/generateclasses.yaml +++ b/.github/workflows/generateclasses.yaml @@ -134,7 +134,7 @@ jobs: if: ${{ inputs.UseLastRepositoryBuild == false && inputs.UseLatestJNetReflectorSource == false }} run: dotnet tool update --version ${{ env.JNet_Version }} -g MASES.JNetReflector - - uses: actions/cache/restore@v5 + - uses: actions/cache/restore@v6 id: cache with: lookup-only: true @@ -142,7 +142,7 @@ jobs: path: ./fontcache/ key: PdfBox_FontCache_${{ env.PDFBox_Version }} - - uses: actions/cache/restore@v5 + - uses: actions/cache/restore@v6 if: steps.cache.outputs.cache-hit == 'true' with: enableCrossOsArchive: true @@ -173,7 +173,7 @@ jobs: - name: Upload artifacts if: steps.cache.outputs.cache-hit != 'true' - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 with: enableCrossOsArchive: true key: PdfBox_FontCache_${{ env.PDFBox_Version }}