Skip to content

Commit c0544bb

Browse files
authored
Use v8
1 parent 2707af8 commit c0544bb

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/comment_bot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
if: github.event.comment.body == 'take'
3131
runs-on: ubuntu-latest
3232
steps:
33-
- uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
33+
- uses: actions/github-script@v8
3434
with:
3535
github-token: ${{ secrets.GITHUB_TOKEN }}
3636
script: |-

.github/workflows/dev_pr.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,28 +49,28 @@ jobs:
4949

5050
- name: Ensure PR title format
5151
id: title-format
52-
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
52+
uses: actions/github-script@v8
5353
with:
5454
script: |
5555
const scripts = require(`${process.env.GITHUB_WORKSPACE}/.github/workflows/dev_pr.js`);
5656
return scripts.check_title_format({core, github, context});
5757
5858
- name: Label PR
59-
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
59+
uses: actions/github-script@v8
6060
with:
6161
script: |
6262
const scripts = require(`${process.env.GITHUB_WORKSPACE}/.github/workflows/dev_pr.js`);
6363
await scripts.apply_labels({core, github, context});
6464
6565
- name: Ensure PR is labeled
66-
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
66+
uses: actions/github-script@v8
6767
with:
6868
script: |
6969
const scripts = require(`${process.env.GITHUB_WORKSPACE}/.github/workflows/dev_pr.js`);
7070
await scripts.check_labels({core, github, context});
7171
7272
- name: Ensure PR is linked to an issue
73-
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
73+
uses: actions/github-script@v8
7474
with:
7575
script: |
7676
const scripts = require(`${process.env.GITHUB_WORKSPACE}/.github/workflows/dev_pr.js`);

0 commit comments

Comments
 (0)