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
2 changes: 1 addition & 1 deletion .github/workflows/cargo-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
# The PR may already exist (e.g., created in previous week and not merged yet) so we
# allow it here and check in the next step so workflow failures will be extraordinary
continue-on-error: true
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
github-token: ${{ secrets.GH_RELEASE_PAT }}
script: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ jobs:
retention-days: 7

- name: Create release notes
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
const fs = require("node:fs");
Expand Down Expand Up @@ -199,7 +199,7 @@ jobs:

- name: Create GitHub release
id: create_release
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
# The response is explicitly returned here so it will be available for other steps
script: |
Expand Down Expand Up @@ -242,7 +242,7 @@ jobs:
# Don't trigger for pre-releases
if: ${{ !contains(github.ref, 'rc') }}
# Reference: https://docs.github.com/en/rest/repos/repos#create-a-repository-dispatch-event
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
github-token: ${{ secrets.GH_RELEASE_PAT }}
script: |
Expand All @@ -258,7 +258,7 @@ jobs:
# Don't trigger for pre-releases
if: ${{ !contains(github.ref, 'rc') }}
# Reference: https://docs.github.com/en/rest/repos/repos#create-a-repository-dispatch-event
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
github-token: ${{ secrets.GH_RELEASE_PAT }}
script: |
Expand Down
Loading