diff --git a/.github/workflows/deploy-gh-pages.yml b/.github/workflows/deploy-gh-pages.yml index c42bde1109b..a2e27c60c25 100644 --- a/.github/workflows/deploy-gh-pages.yml +++ b/.github/workflows/deploy-gh-pages.yml @@ -22,7 +22,7 @@ jobs: with: ref: main - name: 'Download build artifact' - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const allArtifacts = await github.rest.actions.listWorkflowRunArtifacts({ diff --git a/.github/workflows/docker-build-push.yml b/.github/workflows/docker-build-push.yml index eb33994f905..c8f7b0812c3 100644 --- a/.github/workflows/docker-build-push.yml +++ b/.github/workflows/docker-build-push.yml @@ -35,7 +35,7 @@ jobs: run: npm run build:app - name: Determine released version - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const allArtifacts = await github.rest.actions.listWorkflowRunArtifacts({ diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c9cf7f3fbb9..bf20ced9452 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -36,7 +36,7 @@ jobs: - name: Nothing to release if: ${{ env.NEXT_RELEASE_VERSION == '' }} - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | core.setFailed('Nothing to release') @@ -69,7 +69,7 @@ jobs: - name: Release failed if: ${{ steps.semantic.outputs.new_release_published == 'false' }} - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | core.setFailed('Release failed')