From 3b3383ef4ba770ea80c12ed3cf42ea9b4bcdc82d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 18:44:55 +0100 Subject: [PATCH] ci: bump the github-actions group in /.github/workflows with 4 updates (#15091) Bumps the github-actions group in /.github/workflows with 4 updates: [actions/upload-artifact](https://github.com/actions/upload-artifact), [actions/cache](https://github.com/actions/cache), [actions/download-artifact](https://github.com/actions/download-artifact) and [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request). Updates `actions/upload-artifact` from 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v5...v6) Updates `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) Updates `actions/download-artifact` from 6 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v6...v7) Updates `peter-evans/create-pull-request` from 7 to 8 - [Release notes](https://github.com/peter-evans/create-pull-request/releases) - [Commits](https://github.com/peter-evans/create-pull-request/compare/v7...v8) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: peter-evans/create-pull-request dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/ci.yml | 28 +++++++++++------------ .github/workflows/markdown-checker.yml | 2 +- .github/workflows/release-nightly-ota.yml | 10 ++++---- .github/workflows/release-ota.yml | 4 ++-- .github/workflows/release-preparation.yml | 2 +- .github/workflows/res-update-game.yml | 20 ++++++++-------- .github/workflows/smoke-testing.yml | 8 +++---- .github/workflows/website-workflow.yml | 2 +- 8 files changed, 38 insertions(+), 38 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 929907ecc4..82fcc5cfbb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -84,7 +84,7 @@ jobs: echo "[已有 Mirror酱 CDK?前往 Mirror酱 高速下载](https://mirrorchyan.com/zh/projects?rid=MAA&source=maagh-release)" >> CHANGELOG.md - name: Upload changelog to GitHub - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 if: startsWith(github.ref, 'refs/tags/v') with: name: changelog @@ -112,7 +112,7 @@ jobs: - name: Cache MaaDeps id: cache-maadeps - uses: actions/cache@v4 + uses: actions/cache@v5 continue-on-error: true with: path: | @@ -142,7 +142,7 @@ jobs: - name: Cache .nuke/temp, ~/.nuget/packages id: cache-nuget - uses: actions/cache@v4 + uses: actions/cache@v5 continue-on-error: true with: path: | @@ -184,7 +184,7 @@ jobs: continue-on-error: true - name: Upload PDB files - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: MAAComponent-DebugSymbol-win-${{ matrix.arch }} path: install/MAAComponent-DebugSymbol-${{ needs.meta.outputs.tag }}-win-${{ matrix.arch }}.zip @@ -205,7 +205,7 @@ jobs: Compress-Archive -Destination MAA-${{ needs.meta.outputs.tag }}-win-${{ matrix.arch }}.zip -Path ./* - name: Upload MAA to GitHub - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: MAA-win-${{ matrix.arch }} path: install/MAA-*.zip @@ -232,7 +232,7 @@ jobs: - name: Cache MaaDeps id: cache-maadeps - uses: actions/cache@v4 + uses: actions/cache@v5 continue-on-error: true with: path: ./src/MaaUtils/MaaDeps @@ -324,7 +324,7 @@ jobs: tar czvf $GITHUB_WORKSPACE/release/MAA-${{ needs.meta.outputs.tag }}-linux-${{ matrix.arch }}.tar.gz . - name: Upload MAA to GitHub - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: MAA-linux-${{ matrix.arch }} path: | @@ -356,7 +356,7 @@ jobs: - name: Cache MaaDeps id: cache-maadeps - uses: actions/cache@v4 + uses: actions/cache@v5 continue-on-error: true with: path: ./src/MaaUtils/MaaDeps @@ -384,7 +384,7 @@ jobs: cmake --install build --prefix install --config RelWithDebInfo - name: Upload MAA to GitHub - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: MAACore-macos-${{ matrix.arch }} path: "install/*.dylib" @@ -410,13 +410,13 @@ jobs: git submodule update --init --depth 1 src/MaaMacGui - name: Download MAA (arm64) from GitHub - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: MAACore-macos-arm64 path: install-arm64 - name: Download MAA (x64) from GitHub - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: MAACore-macos-x86_64 path: install-x86_64 @@ -462,7 +462,7 @@ jobs: zip -yrX9 "$name.zip" "$name" - name: Upload MAA runtime to GitHub - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: MAA-macos-runtime-universal path: runtime/MAA-${{ needs.meta.outputs.tag }}-macos-runtime-universal.zip @@ -544,7 +544,7 @@ jobs: working-directory: release - name: Upload MAA to GitHub - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: MAA-macos-universal path: ${{ startsWith(github.ref, 'refs/tags/v') && 'release/MAA*' || 'src/MaaMacGui/MAA.xcarchive/**' }} @@ -556,7 +556,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Download MAA from GitHub - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: path: assets diff --git a/.github/workflows/markdown-checker.yml b/.github/workflows/markdown-checker.yml index 102fe84a83..abd6d09ec9 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@v4 + uses: actions/cache@v5 continue-on-error: true with: path: .lycheecache diff --git a/.github/workflows/release-nightly-ota.yml b/.github/workflows/release-nightly-ota.yml index a271d86323..56b1f11610 100644 --- a/.github/workflows/release-nightly-ota.yml +++ b/.github/workflows/release-nightly-ota.yml @@ -171,7 +171,7 @@ jobs: - name: Cache MaaDeps id: cache-maadeps - uses: actions/cache@v4 + uses: actions/cache@v5 continue-on-error: true with: path: | @@ -201,7 +201,7 @@ jobs: - name: Cache .nuke/temp, ~/.nuget/packages id: cache-nuget - uses: actions/cache@v4 + uses: actions/cache@v5 continue-on-error: true with: path: | @@ -242,7 +242,7 @@ jobs: continue-on-error: true - name: Upload PDB files - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: MAAComponent-DebugSymbol-win-${{ matrix.arch }} path: install/MAAComponent-DebugSymbol-${{ steps.set_tag.outputs.tag }}-win-${{ matrix.arch }}.zip @@ -258,7 +258,7 @@ jobs: cp tools/DependencySetup_依赖库安装.bat install - name: Upload MAA to GitHub - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: MAA-win-${{ matrix.arch }} path: install @@ -319,7 +319,7 @@ jobs: show-progress: false - name: Download MAA from GitHub - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: MAA-win-${{ matrix.target }} path: ${{ format('{0}/{1}', 'build-ota', needs.build-win-nightly.outputs.tag) }} diff --git a/.github/workflows/release-ota.yml b/.github/workflows/release-ota.yml index 9fa7b3d472..90d802cba2 100644 --- a/.github/workflows/release-ota.yml +++ b/.github/workflows/release-ota.yml @@ -77,7 +77,7 @@ jobs: PUSH_REMOTE: https://github-actions[bot]:${{ secrets.MAARELEASE_RELEASE }}@github.com/${{ github.repository_owner }}/MaaRelease - name: Upload release config to GitHub - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: MaaReleaseConfig path: ./build-ota/config @@ -96,7 +96,7 @@ jobs: - x64 steps: - name: Download release config - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: MaaReleaseConfig path: ./MaaReleaseConfig diff --git a/.github/workflows/release-preparation.yml b/.github/workflows/release-preparation.yml index 47ff00ff0b..b773567e87 100644 --- a/.github/workflows/release-preparation.yml +++ b/.github/workflows/release-preparation.yml @@ -80,7 +80,7 @@ jobs: git commit -m "$commit_msg" - name: Create changelog PR - uses: peter-evans/create-pull-request@v7 + uses: peter-evans/create-pull-request@v8 with: sign-commits: true token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/res-update-game.yml b/.github/workflows/res-update-game.yml index 7c321255f9..6c6516664e 100644 --- a/.github/workflows/res-update-game.yml +++ b/.github/workflows/res-update-game.yml @@ -37,7 +37,7 @@ jobs: /gamedata/excel/activity_table.json - name: Upload Official resources - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: official path: ./Official @@ -80,7 +80,7 @@ jobs: /kr/gamedata/excel/activity_table.json - name: Upload Overseas resources - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: overseas path: ./Overseas @@ -133,7 +133,7 @@ jobs: fi - name: Upload Taiwan resources - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: txwy path: ./excel @@ -159,7 +159,7 @@ jobs: - name: Restore ResourceUpdater from cache id: resupd-cache - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 continue-on-error: true with: key: ResourceUpdater-${{ runner.os }}-${{ hashFiles('tools/ResourceUpdater/main.cpp') }} @@ -170,7 +170,7 @@ jobs: - name: Cache MaaDeps if: steps.resupd-cache.outputs.cache-hit != 'true' id: maadeps-cache - uses: actions/cache@v4 + uses: actions/cache@v5 continue-on-error: true with: path: | @@ -206,7 +206,7 @@ jobs: - name: Save ResourceUpdater to cache if: always() && steps.resupd-cache.outputs.cache-hit != 'true' - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 continue-on-error: true with: key: ResourceUpdater-${{ runner.os }}-${{ hashFiles('tools/ResourceUpdater/main.cpp') }} @@ -225,19 +225,19 @@ jobs: ttl: 15 - name: Download txwy - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: txwy path: ./tools/ResourceUpdater/Overseas/tw/gamedata/excel - name: Download Overseas - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: overseas path: ./tools/ResourceUpdater/Overseas - name: Download Official - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: official path: ./tools/ResourceUpdater/Official @@ -271,7 +271,7 @@ jobs: - name: Cache python packages if: always() && steps.update_version.outputs.contains_png == 'True' id: cache_python - uses: actions/cache@v4 + uses: actions/cache@v5 continue-on-error: true with: path: ${{ env.pythonLocation }}/Lib/site-packages diff --git a/.github/workflows/smoke-testing.yml b/.github/workflows/smoke-testing.yml index 31c7fa0956..4c22cfdce1 100644 --- a/.github/workflows/smoke-testing.yml +++ b/.github/workflows/smoke-testing.yml @@ -54,7 +54,7 @@ jobs: - name: Restore cache for Smoke Test if: ${{ steps.cache_key.outputs.key != '' }} id: smoke-cache - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 continue-on-error: true with: key: ${{ steps.cache_key.outputs.key }} @@ -74,7 +74,7 @@ jobs: - name: Cache MaaDeps if: steps.smoke-cache.outputs.cache-hit != 'true' id: maadeps-cache - uses: actions/cache@v4 + uses: actions/cache@v5 continue-on-error: true with: path: ./src/MaaUtils/MaaDeps @@ -120,7 +120,7 @@ jobs: - name: Save cache for Smoke Test (only in dev) if: steps.smoke-cache.outputs.cache-hit != 'true' && github.ref == 'refs/heads/dev' - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 continue-on-error: true with: key: ${{ steps.cache_key.outputs.key }} @@ -134,7 +134,7 @@ jobs: - name: Upload logs if: always() - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: logs path: ./install/debug diff --git a/.github/workflows/website-workflow.yml b/.github/workflows/website-workflow.yml index 6964353839..cf5bcdde35 100644 --- a/.github/workflows/website-workflow.yml +++ b/.github/workflows/website-workflow.yml @@ -61,7 +61,7 @@ jobs: working-directory: "./docs" - name: Upload artifact to GitHub - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: dist path: "./docs/.vuepress/dist"