From c7d43c3f8ac492c268ff3ec174031af2900f67a1 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 16 Sep 2022 14:12:19 +0000 Subject: [PATCH] chore(deps): update actions/github-script action to v6.2.0 --- .github/workflows/project_management.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/project_management.yml b/.github/workflows/project_management.yml index 73c4afd2..e5bf994c 100644 --- a/.github/workflows/project_management.yml +++ b/.github/workflows/project_management.yml @@ -72,7 +72,7 @@ jobs: if: | env.LINKED_ISSUE_ID != '' && contains(github.event.pull_request.labels.*.name, env.EXCLUDE_LABEL) != true - uses: actions/github-script@v6.1.1 + uses: actions/github-script@v6.2.0 with: github-token: ${{secrets.GITHUB_TOKEN}} script: | @@ -82,7 +82,7 @@ jobs: if: | steps.bot-pr.outcome == 'success' || env.LINKED_ISSUE_ID == '' && contains(github.event.pull_request.labels.*.name, env.EXCLUDE_LABEL) == true - uses: actions/github-script@v6.1.1 + uses: actions/github-script@v6.2.0 with: github-token: ${{secrets.GITHUB_TOKEN}} script: | @@ -90,7 +90,7 @@ jobs: - name: 'Fail if no linked issue or exclusion label' id: exclude-linked-error if: steps.linked.outcome == 'skipped' && steps.exclude-linked.outcome == 'skipped' - uses: actions/github-script@v6.1.1 + uses: actions/github-script@v6.2.0 with: github-token: ${{secrets.GITHUB_TOKEN}} script: | @@ -99,7 +99,7 @@ jobs: - name: 'Fail if linked issue AND exclusion label' id: linked-and-nochangelog if: steps.linked.outcome == 'success' && steps.exclude-linked.outcome == 'success' - uses: actions/github-script@v6.1.1 + uses: actions/github-script@v6.2.0 with: github-token: ${{secrets.GITHUB_TOKEN}} script: |