Skip to content

Commit 65c1c94

Browse files
chore(ci): bump actions/github-script from 8 to 9
Bumps [actions/github-script](https://github.com/actions/github-script) from 8 to 9. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](actions/github-script@v8...v9) --- updated-dependencies: - dependency-name: actions/github-script dependency-version: '9' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 98ba41a commit 65c1c94

6 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/deploy-develop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ jobs:
397397

398398
steps:
399399
- name: Report deployment failure
400-
uses: actions/github-script@v8
400+
uses: actions/github-script@v9
401401
with:
402402
script: |
403403
await github.rest.repos.createCommitStatus({

.github/workflows/deploy-gate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929

3030
steps:
3131
- name: Check latest deploy-develop status
32-
uses: actions/github-script@v8
32+
uses: actions/github-script@v9
3333
with:
3434
script: |
3535
// Find the most recent deploy-develop workflow run on the develop branch

.github/workflows/markdown.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050

5151
- name: Comment on PR if linting fails
5252
if: steps.markdown-lint.outcome == 'failure' && github.event_name == 'pull_request'
53-
uses: actions/github-script@v8
53+
uses: actions/github-script@v9
5454
with:
5555
script: |
5656
const marker = '<!-- markdown-lint-comment -->';

.github/workflows/proto.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
steps:
5555
- name: Check for breaking-change label
5656
id: check-label
57-
uses: actions/github-script@v8
57+
uses: actions/github-script@v9
5858
with:
5959
script: |
6060
// Fetch current PR labels via API (not from event payload which is stale)
@@ -93,7 +93,7 @@ jobs:
9393

9494
- name: Comment on PR if breaking changes detected
9595
if: failure() && steps.check-label.outputs.skip != 'true'
96-
uses: actions/github-script@v8
96+
uses: actions/github-script@v9
9797
with:
9898
script: |
9999
github.rest.issues.createComment({

.github/workflows/saga-validation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ jobs:
153153
retention-days: 30
154154

155155
- name: Comment PR with validation results
156-
uses: actions/github-script@v8
156+
uses: actions/github-script@v9
157157
if: failure() && github.event_name == 'pull_request'
158158
with:
159159
script: |

.github/workflows/tag-develop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Create lightweight tag
16-
uses: actions/github-script@v8
16+
uses: actions/github-script@v9
1717
with:
1818
script: |
1919
const sha = context.sha.substring(0, 7);

0 commit comments

Comments
 (0)