Skip to content

Commit ab391c7

Browse files
dependabot[bot]ctron
authored andcommitted
Bump actions/github-script from 7 to 8
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]>
1 parent 34a4886 commit ab391c7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/pr-preview-deploy.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
github.event.workflow_run.conclusion == 'success'
1414
steps:
1515
- name: Download build
16-
uses: actions/github-script@v7
16+
uses: actions/github-script@v8
1717
with:
1818
script: |
1919
var artifacts = await github.rest.actions.listWorkflowRunArtifacts({
@@ -33,7 +33,7 @@ jobs:
3333
var fs = require('fs');
3434
fs.writeFileSync('${{github.workspace}}/build.zip', Buffer.from(download.data));
3535
- name: Download PR number
36-
uses: actions/github-script@v7
36+
uses: actions/github-script@v8
3737
with:
3838
script: |
3939
var artifacts = await github.rest.actions.listWorkflowRunArtifacts({
@@ -57,7 +57,7 @@ jobs:
5757
- run: unzip pr.zip
5858

5959
- name: Generate issue_number
60-
uses: actions/github-script@v7
60+
uses: actions/github-script@v8
6161
id: issue_number
6262
with:
6363
github-token: ${{ secrets.GITHUB_TOKEN }}
@@ -67,7 +67,7 @@ jobs:
6767
result-encoding: string
6868

6969
- name: Generate Surge URL
70-
uses: actions/github-script@v7
70+
uses: actions/github-script@v8
7171
id: surge-url
7272
with:
7373
github-token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)