From 91abe06345e60b7f13ed401dd8059588a0575aaf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Sep 2021 10:03:23 +0000 Subject: [PATCH] :arrow_up: Bump actions/github-script from 3 to 5 Bumps [actions/github-script](https://github.com/actions/github-script) from 3 to 5. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v3...v5) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/node.yml | 2 +- .github/workflows/pull-request.yml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/node.yml b/.github/workflows/node.yml index e34fd74..93ea345 100644 --- a/.github/workflows/node.yml +++ b/.github/workflows/node.yml @@ -55,7 +55,7 @@ jobs: user_email: "bot@koj.co" commit_message: ":page_facing_up: Update dependency license file [skip ci]" - name: Add PR comment - uses: actions/github-script@v3 + uses: actions/github-script@v5 if: always() && steps.licensed.outputs.pr_number with: github-token: ${{ secrets.GH_PAT }} diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index b57c7ad..99c4338 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Generate branch name - uses: actions/github-script@v3 + uses: actions/github-script@v5 id: set-branch-name with: script: | @@ -34,7 +34,7 @@ jobs: - name: Set branch name run: echo "PULL_REQUEST_TITLE=${{steps.set-branch-name.outputs.result}}" >> $GITHUB_ENV - name: Generate PR body - uses: actions/github-script@v3 + uses: actions/github-script@v5 id: set-pr-body with: script: | @@ -47,7 +47,7 @@ jobs: - name: Set PR body run: echo "PULL_REQUEST_BODY=${{steps.set-pr-body.outputs.result}}" >> $GITHUB_ENV - name: Generate PR draft - uses: actions/github-script@v3 + uses: actions/github-script@v5 id: set-pr-draft with: script: | @@ -55,7 +55,7 @@ jobs: - name: Set PR draft run: echo "PULL_REQUEST_DRAFT=${{steps.set-pr-draft.outputs.result}}" >> $GITHUB_ENV - name: Determine whether to merge - uses: actions/github-script@v3 + uses: actions/github-script@v5 id: should-pr with: github-token: ${{ secrets.GH_PAT }}