Skip to content

Commit 493da89

Browse files
build(deps): bump actions/github-script from 5 to 6 (#553)
Bumps [actions/github-script](https://github.com/actions/github-script) from 5 to 6. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](actions/github-script@v5...v6) --- updated-dependencies: - dependency-name: actions/github-script 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>
1 parent 809d323 commit 493da89

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Diff for: .github/workflows/auto-merge.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@v2
1616
- name: Download PR artifact
17-
uses: actions/github-script@v5
17+
uses: actions/github-script@v6
1818
with:
1919
script: |
2020
const fs = require('fs');
@@ -44,7 +44,7 @@ jobs:
4444
- name: Unzip artifact
4545
run: unzip pr.zip
4646
- name: Merge PR
47-
uses: actions/github-script@v5
47+
uses: actions/github-script@v6
4848
with:
4949
script: |
5050
const fs = require('fs');

Diff for: .github/workflows/label_pr_on_title.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
github.event.workflow_run.conclusion == 'success' }}
2121
steps:
2222
- name: 'Download artifact'
23-
uses: actions/github-script@v5
23+
uses: actions/github-script@v6
2424
# For security, we only download artifacts tied to the successful PR recording workflow
2525
with:
2626
script: |
@@ -46,7 +46,7 @@ jobs:
4646
- run: unzip pr.zip
4747

4848
- name: 'Label PR based on title'
49-
uses: actions/github-script@v5
49+
uses: actions/github-script@v6
5050
with:
5151
github-token: ${{ secrets.GITHUB_TOKEN }}
5252
# This safely runs in our base repo, not on fork

0 commit comments

Comments
 (0)