Skip to content

Commit a783d5a

Browse files
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 61f0639 commit a783d5a

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/api-proposal-version-check.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
steps:
3636
- name: Get PR info
3737
id: pr_info
38-
uses: actions/github-script@v8
38+
uses: actions/github-script@v9
3939
with:
4040
script: |
4141
let prNumber, headSha, baseSha;
@@ -62,7 +62,7 @@ jobs:
6262
6363
- name: Check for override comment
6464
id: check_override
65-
uses: actions/github-script@v8
65+
uses: actions/github-script@v9
6666
with:
6767
script: |
6868
const prNumber = ${{ steps.pr_info.outputs.number }};
@@ -130,7 +130,7 @@ jobs:
130130
(github.event.comment.author_association == 'OWNER' ||
131131
github.event.comment.author_association == 'MEMBER' ||
132132
github.event.comment.author_association == 'COLLABORATOR')
133-
uses: actions/github-script@v8
133+
uses: actions/github-script@v9
134134
with:
135135
script: |
136136
const headSha = '${{ steps.pr_info.outputs.head_sha }}';
@@ -241,7 +241,7 @@ jobs:
241241
242242
- name: Post warning comment
243243
if: steps.check_override.outputs.override_found != 'true' && steps.version_check.outputs.version_changed == 'true'
244-
uses: actions/github-script@v8
244+
uses: actions/github-script@v9
245245
with:
246246
script: |
247247
const prNumber = ${{ steps.pr_info.outputs.number }};

0 commit comments

Comments
 (0)