Skip to content

Commit cf9a9f4

Browse files
chore(deps): bump actions/github-script from 7 to 8 (#5576)
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]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent a1ecc27 commit cf9a9f4

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/deploy-gh-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
with:
2323
ref: next
2424
- name: 'Download build artifact'
25-
uses: actions/github-script@v7
25+
uses: actions/github-script@v8
2626
with:
2727
script: |
2828
const allArtifacts = await github.rest.actions.listWorkflowRunArtifacts({

.github/workflows/docker-build-push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
run: npm run build:app
3636

3737
- name: Determine released version
38-
uses: actions/github-script@v7
38+
uses: actions/github-script@v8
3939
with:
4040
script: |
4141
const allArtifacts = await github.rest.actions.listWorkflowRunArtifacts({

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535

3636
- name: Nothing to release
3737
if: ${{ env.NEXT_RELEASE_VERSION == '' }}
38-
uses: actions/github-script@v7
38+
uses: actions/github-script@v8
3939
with:
4040
script: |
4141
core.setFailed('Nothing to release')
@@ -66,7 +66,7 @@ jobs:
6666

6767
- name: Release failed
6868
if: steps.semantic.outputs.new_release_published == 'false'
69-
uses: actions/github-script@v7
69+
uses: actions/github-script@v8
7070
with:
7171
script: |
7272
core.setFailed('Release failed')

0 commit comments

Comments
 (0)