Skip to content

Commit a0748da

Browse files
Bump actions/github-script from 7 to 8 (#1888)
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]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Martijn Laarman <[email protected]>
1 parent 9067e91 commit a0748da

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/workflows/auto-add-needs-triage-label.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Add needs triage label
18-
uses: actions/github-script@v7
18+
uses: actions/github-script@v8
1919
with:
2020
script: |
2121
github.rest.issues.addLabels({

.github/workflows/comment-on-asciidoc-changes.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
3030
- name: Add a comment if .asciidoc files changed
3131
if: steps.check-files.outputs.any_changed == 'true'
32-
uses: actions/github-script@v7
32+
uses: actions/github-script@v8
3333
with:
3434
script: |
3535
github.rest.issues.createComment({

.github/workflows/preview-build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ jobs:
147147
- name: Get modified file detail
148148
if: contains(fromJSON('["merge_group", "pull_request", "pull_request_target"]'), github.event_name)
149149
id: check-modified-file-detail
150-
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
150+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
151151
env:
152152
PATH_PATTERN: "${{ inputs.path-pattern != '' && inputs.path-pattern || '**' }}"
153153
IGNORE_PATTERNS: |
@@ -240,7 +240,7 @@ jobs:
240240
contains(fromJSON('["push", "workflow_dispatch"]'), github.event_name)
241241
|| (needs.check.outputs.any_modified == 'true' && startsWith(github.event_name, 'pull_request'))
242242
)
243-
uses: actions/github-script@v7
243+
uses: actions/github-script@v8
244244
id: deployment
245245
env:
246246
PR_NUMBER: ${{ github.event.pull_request.number }}
@@ -465,7 +465,7 @@ jobs:
465465
uses: elastic/docs-builder/actions/update-link-index@main
466466

467467
- name: Update deployment status
468-
uses: actions/github-script@v7
468+
uses: actions/github-script@v8
469469
if: >
470470
env.MATCH == 'true'
471471
&& always()
@@ -501,7 +501,7 @@ jobs:
501501
steps:
502502
- name: Comment on PR
503503
continue-on-error: true
504-
uses: actions/github-script@v7
504+
uses: actions/github-script@v8
505505
env:
506506
ALL_CHANGED_FILES: ${{ needs.check.outputs.all_changed_files }}
507507
PATH_PREFIX: ${{ needs.build.outputs.path_prefix }}
@@ -576,7 +576,7 @@ jobs:
576576
}
577577
- name: Comment on docs changes about versioning requirements
578578
if: inputs.enable-cumulative-comment == true
579-
uses: actions/github-script@v7
579+
uses: actions/github-script@v8
580580
with:
581581
github-token: ${{ secrets.GITHUB_TOKEN }}
582582
# language=javascript

.github/workflows/preview-cleanup.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Delete GitHub environment
19-
uses: actions/github-script@v7
19+
uses: actions/github-script@v8
2020
id: delete-deployment
2121
with:
2222
script: |

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
with:
3434
commitish: ${{ github.sha }}
3535
- name: Create tag
36-
uses: actions/github-script@v7
36+
uses: actions/github-script@v8
3737
with:
3838
script: |
3939
github.rest.git.createRef({

0 commit comments

Comments
 (0)