Skip to content

Commit f9945c6

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] <[email protected]>
1 parent 97a9049 commit f9945c6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/cookbook_pr_trigger.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
- name: Dispatch preproc
1414
if: ${{ github.event.issue.pull_request }}
15-
uses: actions/github-script@v7
15+
uses: actions/github-script@v8
1616
with:
1717
script: |
1818
const owner = context.repo.owner

.github/workflows/cookbook_preproc.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
- name: Create check
6161
if: github.event_name == 'workflow_dispatch' && inputs.pr_number != ''
6262
id: create-check
63-
uses: actions/github-script@v7
63+
uses: actions/github-script@v8
6464
with:
6565
script: |
6666
const created_run = await github.request(
@@ -196,7 +196,7 @@ jobs:
196196
197197
- name: Update check
198198
if: always() && github.event_name == 'workflow_dispatch' && inputs.pr_number != ''
199-
uses: actions/github-script@v7
199+
uses: actions/github-script@v8
200200
with:
201201
script: |
202202
await github.request(

0 commit comments

Comments
 (0)