From eec8d5e6c38d3e4fcb8e5c1747c45ddf7f8de997 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 20:12:59 +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/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7c9ce9f..3f1c486 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -64,7 +64,7 @@ jobs: uses: actions/checkout@v4 - name: Cache bzip2 id: cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ github.workspace }}/install/bz2 key: bz2-${{ needs.fetch.outputs.bz2 }}-${{ matrix.build.host }} @@ -112,7 +112,7 @@ jobs: uses: actions/checkout@v4 - name: Cache libffi id: cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ github.workspace }}/install/ffi key: ffi-${{ needs.fetch.outputs.ffi }}-${{ matrix.build.host }} @@ -179,7 +179,7 @@ jobs: uses: actions/checkout@v4 - name: Cache XZ Utils id: cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ github.workspace }}/install/xz key: xz-${{ needs.fetch.outputs.xz }}-${{ matrix.build.host }}