diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 18f0c61..33f4112 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,9 +17,9 @@ jobs: platform: [macos-latest, ubuntu-22.04, windows-latest] runs-on: ${{ matrix.platform }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v7 with: node-version: 22 cache: npm @@ -28,7 +28,7 @@ jobs: # override the pin, building CI on a different compiler than local. # components must be listed explicitly: the action installs a minimal # profile, and the clippy/fmt steps below die without them. - - uses: dtolnay/rust-toolchain@1.91.1 + - uses: dtolnay/rust-toolchain@1.100.0 with: components: clippy, rustfmt diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 96c8786..e8806d5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -25,16 +25,16 @@ jobs: - platform: windows-latest runs-on: ${{ matrix.platform }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v7 with: node-version: 22 cache: npm # Must match rust-toolchain.toml; @stable would export RUSTUP_TOOLCHAIN and # override the pin, building CI on a different compiler than local. - - uses: dtolnay/rust-toolchain@1.91.1 + - uses: dtolnay/rust-toolchain@1.100.0 - uses: swatinem/rust-cache@v2 with: @@ -87,7 +87,7 @@ jobs: echo "__NOTES_EOF__" } >> "$GITHUB_OUTPUT" - - uses: tauri-apps/tauri-action@v0 + - uses: tauri-apps/tauri-action@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY }}