From 097a75f9da90edc3e9963d0fe62bf984a565c48c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Oct 2023 15:21:45 +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/label_invalid_prs.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/label_invalid_prs.yaml b/.github/workflows/label_invalid_prs.yaml index 81b22fe6..0bb8b05a 100644 --- a/.github/workflows/label_invalid_prs.yaml +++ b/.github/workflows/label_invalid_prs.yaml @@ -34,7 +34,7 @@ jobs: - name: Add 'invalid' label if trigger PR check failed if: github.event.workflow_run.conclusion == 'failure' - uses: actions/github-script@v5 + uses: actions/github-script@v6 with: github-token: ${{secrets.GITHUB_TOKEN}} script: | @@ -46,7 +46,7 @@ jobs: }) - name: Remove 'invalid' label if trigger PR check was successful if: github.event.workflow_run.conclusion == 'success' - uses: actions/github-script@v5 + uses: actions/github-script@v6 with: github-token: ${{secrets.GITHUB_TOKEN}} script: |