Skip to content

Commit 718457f

Browse files
Bump actions/github-script from 7 to 8
Bumps [actions/github-script](https://github.com/actions/github-script) from 7 to 8. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](actions/github-script@v7...v8) --- updated-dependencies: - dependency-name: actions/github-script dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 2c81c03 commit 718457f

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/cargo-update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
# The PR may already exist (e.g., created in previous week and not merged yet) so we
3737
# allow it here and check in the next step so workflow failures will be extraordinary
3838
continue-on-error: true
39-
uses: actions/github-script@v7
39+
uses: actions/github-script@v8
4040
with:
4141
github-token: ${{ secrets.GH_RELEASE_PAT }}
4242
script: |

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ jobs:
138138
retention-days: 7
139139

140140
- name: Create release notes
141-
uses: actions/github-script@v7
141+
uses: actions/github-script@v8
142142
with:
143143
script: |
144144
const fs = require("node:fs");
@@ -199,7 +199,7 @@ jobs:
199199

200200
- name: Create GitHub release
201201
id: create_release
202-
uses: actions/github-script@v7
202+
uses: actions/github-script@v8
203203
with:
204204
# The response is explicitly returned here so it will be available for other steps
205205
script: |
@@ -242,7 +242,7 @@ jobs:
242242
# Don't trigger for pre-releases
243243
if: ${{ !contains(github.ref, 'rc') }}
244244
# Reference: https://docs.github.com/en/rest/repos/repos#create-a-repository-dispatch-event
245-
uses: actions/github-script@v7
245+
uses: actions/github-script@v8
246246
with:
247247
github-token: ${{ secrets.GH_RELEASE_PAT }}
248248
script: |
@@ -258,7 +258,7 @@ jobs:
258258
# Don't trigger for pre-releases
259259
if: ${{ !contains(github.ref, 'rc') }}
260260
# Reference: https://docs.github.com/en/rest/repos/repos#create-a-repository-dispatch-event
261-
uses: actions/github-script@v7
261+
uses: actions/github-script@v8
262262
with:
263263
github-token: ${{ secrets.GH_RELEASE_PAT }}
264264
script: |

0 commit comments

Comments
 (0)