From bd2d86fd8f22a23602854a839fe784f548fda9df Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 29 Nov 2025 20:37:21 +0800 Subject: [PATCH] chore(deps): update github actions (#5661) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/alpha.yml | 24 +++++------ .github/workflows/autobuild-check-test.yml | 2 +- .../workflows/check-commit-needs-build.yml | 2 +- .github/workflows/clean-old-assets.yml | 4 +- .github/workflows/cross_check.yaml | 6 +-- .github/workflows/dev.yml | 12 +++--- .github/workflows/frontend-check.yml | 6 +-- .github/workflows/lint-clippy.yml | 2 +- .github/workflows/release.yml | 42 +++++++++---------- .github/workflows/rustfmt.yml | 2 +- .github/workflows/updater.yml | 12 +++--- 11 files changed, 57 insertions(+), 57 deletions(-) diff --git a/.github/workflows/alpha.yml b/.github/workflows/alpha.yml index a7221a367..cec7440ae 100644 --- a/.github/workflows/alpha.yml +++ b/.github/workflows/alpha.yml @@ -35,7 +35,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Check tag and package.json version id: check_tag @@ -64,7 +64,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Delete Old Alpha Tags Except Latest - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: | @@ -180,7 +180,7 @@ jobs: needs: delete_old_assets steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Fetch UPDATE logs id: fetch_update_logs @@ -275,7 +275,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout Repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install Rust Stable uses: dtolnay/rust-toolchain@stable @@ -305,9 +305,9 @@ jobs: echo "PKG_CONFIG_PATH=$(brew --prefix openssl@3)/lib/pkgconfig" >> $GITHUB_ENV - name: Install Node - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: - node-version: "22" + node-version: "24.11.1" - uses: pnpm/action-setup@v4 name: Install pnpm @@ -360,7 +360,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout Repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install Rust Stable uses: dtolnay/rust-toolchain@stable @@ -375,9 +375,9 @@ jobs: save-if: false - name: Install Node - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: - node-version: "22" + node-version: "24.11.1" - name: Install pnpm uses: pnpm/action-setup@v4 @@ -491,7 +491,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout Repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Add Rust Target run: rustup target add ${{ matrix.target }} @@ -503,9 +503,9 @@ jobs: save-if: false - name: Install Node - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: - node-version: "22" + node-version: "24.11.1" - uses: pnpm/action-setup@v4 name: Install pnpm diff --git a/.github/workflows/autobuild-check-test.yml b/.github/workflows/autobuild-check-test.yml index ea827db22..4eb6da0a2 100644 --- a/.github/workflows/autobuild-check-test.yml +++ b/.github/workflows/autobuild-check-test.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 2 diff --git a/.github/workflows/check-commit-needs-build.yml b/.github/workflows/check-commit-needs-build.yml index e625319b6..f78c0aab2 100644 --- a/.github/workflows/check-commit-needs-build.yml +++ b/.github/workflows/check-commit-needs-build.yml @@ -53,7 +53,7 @@ jobs: autobuild_version: ${{ steps.check.outputs.autobuild_version }} steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 50 diff --git a/.github/workflows/clean-old-assets.yml b/.github/workflows/clean-old-assets.yml index c4409d3e6..cb21eb213 100644 --- a/.github/workflows/clean-old-assets.yml +++ b/.github/workflows/clean-old-assets.yml @@ -42,7 +42,7 @@ jobs: autobuild_version: ${{ steps.check.outputs.autobuild_version }} steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 50 @@ -105,7 +105,7 @@ jobs: needs: check_current_version steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Clean old assets from release env: diff --git a/.github/workflows/cross_check.yaml b/.github/workflows/cross_check.yaml index 03a65bf14..06eeb9155 100644 --- a/.github/workflows/cross_check.yaml +++ b/.github/workflows/cross_check.yaml @@ -30,7 +30,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout Repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install Rust Stable uses: dtolnay/rust-toolchain@stable @@ -41,9 +41,9 @@ jobs: run: rustup target add ${{ matrix.target }} - name: Install Node - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: - node-version: "20" + node-version: "24.11.1" - uses: pnpm/action-setup@v4 name: Install pnpm diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index 647bbd7e2..bf060e901 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -70,7 +70,7 @@ jobs: - name: Checkout Repository if: github.event.inputs[matrix.input] == 'true' - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install Rust Stable if: github.event.inputs[matrix.input] == 'true' @@ -101,9 +101,9 @@ jobs: - name: Install Node if: github.event.inputs[matrix.input] == 'true' - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: - node-version: "22" + node-version: "24.11.1" cache: "pnpm" - name: Pnpm Cache @@ -153,7 +153,7 @@ jobs: - name: Upload Artifacts (macOS) if: matrix.os == 'macos-latest' && github.event.inputs[matrix.input] == 'true' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: ${{ matrix.target }} path: target/${{ matrix.target }}/release/bundle/dmg/*.dmg @@ -161,7 +161,7 @@ jobs: - name: Upload Artifacts (Windows) if: matrix.os == 'windows-latest' && github.event.inputs[matrix.input] == 'true' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: ${{ matrix.target }} path: target/${{ matrix.target }}/release/bundle/nsis/*.exe @@ -169,7 +169,7 @@ jobs: - name: Upload Artifacts (Linux) if: matrix.os == 'ubuntu-22.04' && github.event.inputs[matrix.input] == 'true' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: ${{ matrix.target }} path: target/${{ matrix.target }}/release/bundle/deb/*.deb diff --git a/.github/workflows/frontend-check.yml b/.github/workflows/frontend-check.yml index 3db52fb70..4bb8455bd 100644 --- a/.github/workflows/frontend-check.yml +++ b/.github/workflows/frontend-check.yml @@ -11,7 +11,7 @@ jobs: frontend: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Check frontend changes id: check_frontend @@ -44,10 +44,10 @@ jobs: with: run_install: false - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v6 if: steps.check_frontend.outputs.frontend == 'true' with: - node-version: "22" + node-version: "24.11.1" cache: "pnpm" - name: Restore pnpm cache diff --git a/.github/workflows/lint-clippy.yml b/.github/workflows/lint-clippy.yml index 06a3229f1..ee74f9b0d 100644 --- a/.github/workflows/lint-clippy.yml +++ b/.github/workflows/lint-clippy.yml @@ -44,7 +44,7 @@ jobs: echo "Manual trigger detected: skipping changes check and running clippy." - name: Checkout Repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install Rust Stable uses: dtolnay/rust-toolchain@master diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index eaed8a98e..90a2cca2e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,7 +24,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 @@ -69,7 +69,7 @@ jobs: needs: [release, release-for-linux-arm, release-for-fixed-webview2] steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Fetch UPDATE logs id: fetch_update_logs @@ -156,7 +156,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout Repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install Rust Stable uses: dtolnay/rust-toolchain@stable @@ -186,9 +186,9 @@ jobs: echo "PKG_CONFIG_PATH=$(brew --prefix openssl@3)/lib/pkgconfig" >> $GITHUB_ENV - name: Install Node - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: - node-version: "22" + node-version: "24.11.1" - uses: pnpm/action-setup@v4 name: Install pnpm @@ -240,7 +240,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout Repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install Rust Stable uses: dtolnay/rust-toolchain@stable @@ -255,9 +255,9 @@ jobs: save-if: false - name: Install Node - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: - node-version: "22" + node-version: "24.11.1" - name: Install pnpm uses: pnpm/action-setup@v4 @@ -364,7 +364,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout Repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Add Rust Target run: rustup target add ${{ matrix.target }} @@ -376,9 +376,9 @@ jobs: save-if: false - name: Install Node - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: - node-version: "22" + node-version: "24.11.1" - uses: pnpm/action-setup@v4 name: Install pnpm @@ -452,12 +452,12 @@ jobs: needs: [update_tag] steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install Node - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: - node-version: "22" + node-version: "24.11.1" - uses: pnpm/action-setup@v4 name: Install pnpm @@ -478,12 +478,12 @@ jobs: needs: [update_tag] steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install Node - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: - node-version: "22" + node-version: "24.11.1" - uses: pnpm/action-setup@v4 name: Install pnpm @@ -505,7 +505,7 @@ jobs: needs: [update_tag, release-update] steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 - name: Get Version @@ -535,7 +535,7 @@ jobs: ] steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Fetch UPDATE logs id: fetch_update_logs @@ -543,9 +543,9 @@ jobs: shell: bash - name: Install Node - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: - node-version: "22" + node-version: "24.11.1" - uses: pnpm/action-setup@v4 name: Install pnpm diff --git a/.github/workflows/rustfmt.yml b/.github/workflows/rustfmt.yml index 589e1bb30..c0f5c33c9 100644 --- a/.github/workflows/rustfmt.yml +++ b/.github/workflows/rustfmt.yml @@ -14,7 +14,7 @@ jobs: rustfmt: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Check Rust changes id: check_rust diff --git a/.github/workflows/updater.yml b/.github/workflows/updater.yml index d482bc608..1e182197c 100644 --- a/.github/workflows/updater.yml +++ b/.github/workflows/updater.yml @@ -10,12 +10,12 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install Node - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: - node-version: "22" + node-version: "24.11.1" - uses: pnpm/action-setup@v4 name: Install pnpm @@ -34,12 +34,12 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install Node - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: - node-version: "22" + node-version: "24.11.1" - uses: pnpm/action-setup@v4 name: Install pnpm