Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/release.generated.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,16 @@ 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 }}'
GH_WORKFLOW_ACTOR: '${{ github.actor }}'
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 }}
6 changes: 3 additions & 3 deletions .github/workflows/release.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand All @@ -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}`,
],
},
],
Expand Down