diff --git a/.github/workflows/release.generated.yml b/.github/workflows/release.generated.yml index cfcb1b2..29f2315 100644 --- a/.github/workflows/release.generated.yml +++ b/.github/workflows/release.generated.yml @@ -19,11 +19,11 @@ jobs: timeout-minutes: 30 steps: - name: Clone repository - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4 + uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6 with: token: '${{ secrets.GH_DPRINTBOT_PAT }}' - uses: denoland/setup-deno@667a34cdef165d8d2b2e98dde39547c9daac7282 # v2 - - uses: dtolnay/rust-toolchain@29eef336d9b2848a0b548edc03f92a220660cdb8 # stable + - uses: dsherret/rust-toolchain-file@3551321aa44dd44a0393eb3b6bdfbc5d25ecf621 # v1 - name: Bump version and tag env: GITHUB_TOKEN: '${{ secrets.GH_DPRINTBOT_PAT }}' @@ -31,4 +31,4 @@ jobs: run: |- git config user.email "${{ github.actor }}@users.noreply.github.com" git config user.name "${{ github.actor }}" - deno run -A jsr:@dprint/automation@0.10.3/tasks/publish-release --${{ github.event.inputs.releaseKind }} + deno run -A jsr:@dprint/automation@0.12.1/tasks/publish-release --${{ github.event.inputs.releaseKind }} diff --git a/.github/workflows/release.ts b/.github/workflows/release.ts index 38db776..d54c373 100755 --- a/.github/workflows/release.ts +++ b/.github/workflows/release.ts @@ -27,11 +27,11 @@ workflow({ steps: [ { name: "Clone repository", - uses: "actions/checkout@v4", + uses: "actions/checkout@v6", with: { token: "${{ secrets.GH_DPRINTBOT_PAT }}" }, }, { uses: "denoland/setup-deno@v2" }, - { uses: "dtolnay/rust-toolchain@stable" }, + { uses: "dsherret/rust-toolchain-file@v1" }, { name: "Bump version and tag", env: { @@ -41,7 +41,7 @@ workflow({ run: [ `git config user.email "${actor}@users.noreply.github.com"`, `git config user.name "${actor}"`, - `deno run -A jsr:@dprint/automation@0.10.3/tasks/publish-release --${releaseKind}`, + `deno run -A jsr:@dprint/automation@0.12.1/tasks/publish-release --${releaseKind}`, ], }, ],