From 0c4e9b2fa647b027b3fc91fa2e6068973a442f92 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 23:04:00 +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/build-openwrt.yml | 6 +++--- .github/workflows/update-checker.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-openwrt.yml b/.github/workflows/build-openwrt.yml index 1037994..40b7f76 100644 --- a/.github/workflows/build-openwrt.yml +++ b/.github/workflows/build-openwrt.yml @@ -90,21 +90,21 @@ jobs: - name: Cache1 id: cache-build_dir - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: /workdir/openwrt/build_dir/ key: cache-build_dir - name: Cache2 id: cache-tmp - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: /workdir/openwrt/tmp key: cache-tmp - name: Cache3 id: cache-llvm - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: /workdir/openwrt/llvm-bpf-15.0.7.Linux-x86_64 key: cache-llvm diff --git a/.github/workflows/update-checker.yml b/.github/workflows/update-checker.yml index 995e54b..877e747 100644 --- a/.github/workflows/update-checker.yml +++ b/.github/workflows/update-checker.yml @@ -34,7 +34,7 @@ jobs: - name: Compare Commit Hash id: cacheHash - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: .commitHash key: HEAD-${{ steps.getHash.outputs.commitHash }}