From 63ea5d3e9e020da4d3034cbe39369a1789aa9140 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 14 Feb 2022 01:14:07 +0000 Subject: [PATCH] Bump actions/github-script from 5 to 6 Bumps [actions/github-script](https://github.com/actions/github-script) from 5 to 6. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/publish-edge.yml | 4 ++-- .github/workflows/publish-release.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/publish-edge.yml b/.github/workflows/publish-edge.yml index 19bc30c3b..230d34194 100644 --- a/.github/workflows/publish-edge.yml +++ b/.github/workflows/publish-edge.yml @@ -16,13 +16,13 @@ jobs: HAS_SECRET: ${{ secrets.NPM_AUTH_TOKEN != null }} - name: Succeed job on existing NPM_AUTH_TOKEN if: ${{ steps.check_token.outputs.token_exists == 'true' }} - uses: actions/github-script@v5 + uses: actions/github-script@v6 with: script: | core.setOutput('Success. NPM_AUTH_TOKEN is present in repository secrets.'); - name: Fail on missing NPM_AUTH_TOKEN if: ${{ steps.check_token.outputs.token_exists == 'false' }} - uses: actions/github-script@v5 + uses: actions/github-script@v6 with: script: | core.setFailed('Failure: No NPM_AUTH_TOKEN present in repository secrets.'); diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml index 682597773..24e062bdc 100644 --- a/.github/workflows/publish-release.yml +++ b/.github/workflows/publish-release.yml @@ -15,13 +15,13 @@ jobs: HAS_SECRET: ${{ secrets.NPM_AUTH_TOKEN != null }} - name: Succeed job on existing NPM_AUTH_TOKEN if: ${{ steps.check_token.outputs.token_exists == 'true' }} - uses: actions/github-script@v5 + uses: actions/github-script@v6 with: script: | core.setOutput('Success. NPM_AUTH_TOKEN is present in repository secrets.'); - name: Fail on missing NPM_AUTH_TOKEN if: ${{ steps.check_token.outputs.token_exists == 'false' }} - uses: actions/github-script@v5 + uses: actions/github-script@v6 with: script: | core.setFailed('Failure: No NPM_AUTH_TOKEN present in repository secrets.');