Skip to content

Commit 073afc3

Browse files
Bump actions/github-script from 7 to 8 (#2142)
1 parent ba7bf4f commit 073afc3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/changelog.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
steps:
1515
- name: 'Check for Skip Changelog label, or if the PR is a draft'
1616
id: check-skip-label
17-
uses: actions/github-script@v7
17+
uses: actions/github-script@v8
1818
with:
1919
script: |
2020
const { payload : { pull_request : { number, labels, draft = false, base : { ref } } } } = context;
@@ -42,7 +42,7 @@ jobs:
4242
- name: 'Check for changelog file'
4343
if: steps.check-skip-label.outputs.skip-changelog != 'true'
4444
id: check-changelog-file
45-
uses: actions/github-script@v7
45+
uses: actions/github-script@v8
4646
with:
4747
script: |
4848
const { repo: { owner, repo }, payload : { pull_request : { number } } } = context;
@@ -85,7 +85,7 @@ jobs:
8585
- name: 'Check for changelog information in PR body'
8686
id: check-pr-body
8787
if: steps.check-skip-label.outputs.skip-changelog != 'true' && steps.check-changelog-file.outputs.has-changelog-file != 'true'
88-
uses: actions/github-script@v7
88+
uses: actions/github-script@v8
8989
with:
9090
script: |
9191
const { repo: { owner, repo }, payload : { pull_request : { number, body } } } = context;
@@ -165,7 +165,7 @@ jobs:
165165
if: steps.check-skip-label.outputs.skip-changelog != 'true' && steps.check-changelog-file.outputs.has-changelog-file != 'true' && steps.check-pr-body.outputs.has-changelog-info == 'true'
166166
env:
167167
PR_MESSAGE: '${{ steps.check-pr-body.outputs.message }}'
168-
uses: actions/github-script@v7
168+
uses: actions/github-script@v8
169169
with:
170170
github-token: ${{ secrets.API_TOKEN_GITHUB }}
171171
script: |

0 commit comments

Comments
 (0)