From ff7306775b18640431ad8209c566c7fe229660bd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 28 Jun 2026 13:24:55 +0800 Subject: [PATCH] ci: bump actions/cache from 5 to 6 in /.github/workflows in the github-actions group (#17207) Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 10 +++++----- .github/workflows/markdown-checker.yml | 2 +- .github/workflows/release-nightly-ota.yml | 4 ++-- .github/workflows/res-update-game.yml | 6 +++--- .github/workflows/smoke-testing.yml | 6 +++--- 5 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fc5ddfacde..28a5bd8ddf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -117,7 +117,7 @@ jobs: - name: Cache MaaDeps id: cache-maadeps - uses: actions/cache@v5 + uses: actions/cache@v6 continue-on-error: true with: path: | @@ -164,7 +164,7 @@ jobs: - name: Cache .nuke/temp, ~/.nuget/packages id: cache-nuget - uses: actions/cache@v5 + uses: actions/cache@v6 continue-on-error: true with: path: | @@ -255,7 +255,7 @@ jobs: - name: Cache MaaDeps id: cache-maadeps - uses: actions/cache@v5 + uses: actions/cache@v6 continue-on-error: true with: path: ./src/MaaUtils/MaaDeps @@ -375,7 +375,7 @@ jobs: - name: Cache MaaDeps id: cache-maadeps - uses: actions/cache@v5 + uses: actions/cache@v6 continue-on-error: true with: path: ./src/MaaUtils/MaaDeps @@ -452,7 +452,7 @@ jobs: - name: Cache MaaDeps id: cache-maadeps - uses: actions/cache@v5 + uses: actions/cache@v6 continue-on-error: true with: path: ./src/MaaUtils/MaaDeps diff --git a/.github/workflows/markdown-checker.yml b/.github/workflows/markdown-checker.yml index 74cb5e8254..06f401ea65 100644 --- a/.github/workflows/markdown-checker.yml +++ b/.github/workflows/markdown-checker.yml @@ -36,7 +36,7 @@ jobs: show-progress: false - name: Cache lychee responses - uses: actions/cache@v5 + uses: actions/cache@v6 continue-on-error: true with: path: .lycheecache diff --git a/.github/workflows/release-nightly-ota.yml b/.github/workflows/release-nightly-ota.yml index 14581402fc..9bc6e2703b 100644 --- a/.github/workflows/release-nightly-ota.yml +++ b/.github/workflows/release-nightly-ota.yml @@ -170,7 +170,7 @@ jobs: - name: Cache MaaDeps id: cache-maadeps - uses: actions/cache@v5 + uses: actions/cache@v6 continue-on-error: true with: path: | @@ -218,7 +218,7 @@ jobs: - name: Cache .nuke/temp, ~/.nuget/packages id: cache-nuget - uses: actions/cache@v5 + uses: actions/cache@v6 continue-on-error: true with: path: | diff --git a/.github/workflows/res-update-game.yml b/.github/workflows/res-update-game.yml index 9578fbd218..6a5ad6d894 100644 --- a/.github/workflows/res-update-game.yml +++ b/.github/workflows/res-update-game.yml @@ -155,7 +155,7 @@ jobs: - name: Restore ResourceUpdater from cache id: resupd-cache - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 continue-on-error: true with: key: ResourceUpdater-${{ runner.os }}-${{ hashFiles('tools/ResourceUpdater/main.cpp') }} @@ -171,7 +171,7 @@ jobs: - name: Cache MaaDeps if: steps.resupd-cache.outputs.cache-hit != 'true' id: maadeps-cache - uses: actions/cache@v5 + uses: actions/cache@v6 continue-on-error: true with: path: | @@ -195,7 +195,7 @@ jobs: - name: Save ResourceUpdater to cache if: always() && steps.resupd-cache.outputs.cache-hit != 'true' - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 continue-on-error: true with: key: ResourceUpdater-${{ runner.os }}-${{ hashFiles('tools/ResourceUpdater/main.cpp') }} diff --git a/.github/workflows/smoke-testing.yml b/.github/workflows/smoke-testing.yml index f0725b6455..b237e01d5a 100644 --- a/.github/workflows/smoke-testing.yml +++ b/.github/workflows/smoke-testing.yml @@ -56,7 +56,7 @@ jobs: - name: Restore cache for Smoke Test if: ${{ steps.cache_key.outputs.key != '' }} id: smoke-cache - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 continue-on-error: true with: key: ${{ steps.cache_key.outputs.key }} @@ -76,7 +76,7 @@ jobs: - name: Cache MaaDeps if: steps.smoke-cache.outputs.cache-hit != 'true' id: maadeps-cache - uses: actions/cache@v5 + uses: actions/cache@v6 continue-on-error: true with: path: ./src/MaaUtils/MaaDeps @@ -107,7 +107,7 @@ jobs: - name: Save cache for Smoke Test (only in dev-v2) if: steps.smoke-cache.outputs.cache-hit != 'true' && github.ref == 'refs/heads/dev-v2' - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 continue-on-error: true with: key: ${{ steps.cache_key.outputs.key }}