Skip to content

Commit 6ca3a80

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 aa5a068 commit 6ca3a80

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/cleanup-preview.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
continue-on-error: true
5959

6060
- name: Comment Cleanup Status
61-
uses: actions/github-script@v8
61+
uses: actions/github-script@v9
6262
env:
6363
SHOULD_CLEANUP: ${{ steps.cleanup_guard.outputs.should_cleanup }}
6464
SKIP_REASON: ${{ steps.cleanup_guard.outputs.reason }}

.github/workflows/dependabot-auto-merge.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666

6767
- name: Comment on major updates
6868
if: steps.metadata.outputs.update-type == 'version-update:semver-major'
69-
uses: actions/github-script@v8
69+
uses: actions/github-script@v9
7070
with:
7171
script: |
7272
github.rest.issues.createComment({
@@ -87,7 +87,7 @@ jobs:
8787
})
8888
8989
- name: Label based on update type
90-
uses: actions/github-script@v8
90+
uses: actions/github-script@v9
9191
with:
9292
script: |
9393
const updateType = '${{ steps.metadata.outputs.update-type }}';

.github/workflows/deploy-preview.yml

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

122122
- name: Comment Preview URL
123123
if: github.event_name == 'pull_request'
124-
uses: actions/github-script@v8
124+
uses: actions/github-script@v9
125125
env:
126126
PREVIEW_URL: ${{ steps.preview_meta.outputs.preview_url }}
127127
SHOULD_DEPLOY: ${{ steps.deploy_guard.outputs.should_deploy }}

.github/workflows/scheduled-checks.yml

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

3939
- name: Create issue if URLs are broken
4040
if: failure()
41-
uses: actions/github-script@v8
41+
uses: actions/github-script@v9
4242
with:
4343
script: |
4444
const title = '🔗 Broken URLs detected in manifests';

0 commit comments

Comments
 (0)