From bac5da8487aa451bab94c45bd7c0aca4c60b6af8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 26 Jun 2026 07:33:20 +0000 Subject: [PATCH] build(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/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d574905..10eb1b3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -98,7 +98,7 @@ jobs: password: ${{ secrets.GITHUB_TOKEN }} - name: Restore Buildah Cache - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: /var/tmp/buildah-cache-* key: ${{ runner.os }}-${{ runner.arch }}-buildah-${{ github.sha }} @@ -133,7 +133,7 @@ jobs: [ -d /var/tmp/buildah-cache-0 ] && sudo chmod -R 777 /var/tmp/buildah-cache-0 || true - name: Save Buildah Cache - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 with: path: /var/tmp/buildah-cache-* key: ${{ runner.os }}-${{ runner.arch }}-buildah-${{ github.sha }}