Skip to content

Commit 072bb11

Browse files
chore(deps): bump actions/github-script from 7 to 8 (#10568)
1 parent bf38276 commit 072bb11

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
run: npm run build
3232

3333
- name: Determine released version
34-
uses: actions/github-script@v7
34+
uses: actions/github-script@v8
3535
with:
3636
script: |
3737
const allArtifacts = await github.rest.actions.listWorkflowRunArtifacts({

.github/workflows/release-swagger-ui-dist.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
run: npm ci
3232

3333
- name: Download build artifact
34-
uses: actions/github-script@v7
34+
uses: actions/github-script@v8
3535
with:
3636
script: |
3737
const allArtifacts = await github.rest.actions.listWorkflowRunArtifacts({

.github/workflows/release-swagger-ui-react.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
run: npm ci
3232

3333
- name: Download build artifact
34-
uses: actions/github-script@v7
34+
uses: actions/github-script@v8
3535
with:
3636
script: |
3737
const allArtifacts = await github.rest.actions.listWorkflowRunArtifacts({

.github/workflows/release-swagger-ui.yml

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

3737
- name: Nothing to release
3838
if: ${{ env.NEXT_RELEASE_VERSION == '' }}
39-
uses: actions/github-script@v7
39+
uses: actions/github-script@v8
4040
with:
4141
script: |
4242
core.setFailed('Nothing to release')
@@ -64,7 +64,7 @@ jobs:
6464

6565
- name: Release failed
6666
if: steps.semantic.outputs.new_release_published == 'false'
67-
uses: actions/github-script@v7
67+
uses: actions/github-script@v8
6868
with:
6969
script: |
7070
core.setFailed('Release failed')

0 commit comments

Comments
 (0)