Skip to content

Commit ebc6a98

Browse files
chore(deps): update actions/github-script action to v6.4.1
1 parent 6819614 commit ebc6a98

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
yarn standard-version --skip.changelog --skip.commit --skip.tag
3939
4040
- name: Generate name for artifact
41-
uses: actions/github-script@v6.4.0
41+
uses: actions/github-script@v6.4.1
4242
id: version
4343
with:
4444
result-encoding: string

.github/workflows/post-build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
if: ${{ github.event.workflow_run.event == 'pull_request' }}
1414
steps:
1515
- name: Download artifact
16-
uses: actions/github-script@v6.4.0
16+
uses: actions/github-script@v6.4.1
1717
with:
1818
script: |
1919
var artifacts = await github.rest.actions.listWorkflowRunArtifacts({
@@ -38,7 +38,7 @@ jobs:
3838

3939
- name: Delete label
4040
id: label
41-
uses: actions/github-script@v6.4.0
41+
uses: actions/github-script@v6.4.1
4242
with:
4343
result-encoding: string
4444
script: |
@@ -58,7 +58,7 @@ jobs:
5858
}
5959
6060
- name: Comment on PR
61-
uses: actions/github-script@v6.4.0
61+
uses: actions/github-script@v6.4.1
6262
if: ${{ steps.label.outputs.result == 'wait-to-build' }}
6363
with:
6464
script: |
@@ -73,7 +73,7 @@ jobs:
7373
});
7474
7575
- name: Clear artifact
76-
uses: actions/github-script@v6.4.0
76+
uses: actions/github-script@v6.4.1
7777
with:
7878
script: |
7979
const artifacts = await github.rest.actions.listWorkflowRunArtifacts({

.github/workflows/prepare-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
if: contains(github.event.pull_request.labels.*.name, 'prepare-release')
2323
steps:
2424
- name: Clear label
25-
uses: actions/github-script@v6.4.0
25+
uses: actions/github-script@v6.4.1
2626
env:
2727
NUMBER: ${{ github.event.number }}
2828
with:
@@ -60,7 +60,7 @@ jobs:
6060
npx prettier --write CHANGELOG.md --prose-wrap never --ignore-path ./gitignore
6161
6262
- name: Get version from package.json
63-
uses: actions/github-script@v6.4.0
63+
uses: actions/github-script@v6.4.1
6464
id: version
6565
with:
6666
result-encoding: string
@@ -90,7 +90,7 @@ jobs:
9090
path: ./CHANGELOG.md
9191

9292
- name: Prepare release PR
93-
uses: actions/github-script@v6.4.0
93+
uses: actions/github-script@v6.4.1
9494
env:
9595
TITLE: ${{ steps.version.outputs.title }}
9696
CHANGELOG: ${{ steps.changelog-reader.outputs.changes }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
yarn prettier --write CHANGELOG.md --prose-wrap never --ignore-path ./gitignore
3535
3636
- name: Get version from package.json
37-
uses: actions/github-script@v6.4.0
37+
uses: actions/github-script@v6.4.1
3838
id: version
3939
with:
4040
result-encoding: string

0 commit comments

Comments
 (0)