From 775e2b48abc88e1c77707334b5458b5d6d486970 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 14 Oct 2022 02:23:29 +0000 Subject: [PATCH] chore(deps): bump actions/github-script from 3 to 6.3.3 Bumps [actions/github-script](https://github.com/actions/github-script) from 3 to 6.3.3. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v3...v6.3.3) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/default-branch-check.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/default-branch-check.yaml b/.github/workflows/default-branch-check.yaml index 5e4ac0a54a..ac0990989a 100644 --- a/.github/workflows/default-branch-check.yaml +++ b/.github/workflows/default-branch-check.yaml @@ -12,7 +12,7 @@ jobs: steps: - name: fail if base branch is not default branch if: ${{ github.event.pull_request.base.ref != github.event.repository.default_branch }} - uses: actions/github-script@v3 + uses: actions/github-script@v6.3.3 with: script: | core.setFailed("Base branch of the PR - ${{ github.event.pull_request.base.ref }} is not a default branch. Please reopen your PR to ${{ github.event.repository.default_branch }}")