From 9bed81cf03e82b1ca3b13d373218d05dbeed6075 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 08:14:43 +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/generateclasses.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/generateclasses.yaml b/.github/workflows/generateclasses.yaml index f494eec4..1e30d365 100644 --- a/.github/workflows/generateclasses.yaml +++ b/.github/workflows/generateclasses.yaml @@ -147,7 +147,7 @@ jobs: if: ${{ inputs.UseLastRepositoryBuild == false && inputs.UseLatestJNetReflectorSource == false }} run: dotnet tool update --version ${{ env.JNet_Version }} -g MASES.JNetReflector - - uses: actions/cache/restore@v4 + - uses: actions/cache/restore@v5 id: cache with: lookup-only: true @@ -155,7 +155,7 @@ jobs: path: ./fontcache/ key: PdfBox_FontCache_${{ env.PDFBox_Version }} - - uses: actions/cache/restore@v4 + - uses: actions/cache/restore@v5 if: steps.cache.outputs.cache-hit == 'true' with: enableCrossOsArchive: true @@ -186,7 +186,7 @@ jobs: - name: Upload artifacts if: steps.cache.outputs.cache-hit != 'true' - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: enableCrossOsArchive: true key: PdfBox_FontCache_${{ env.PDFBox_Version }}