From df3b5602cb395d08eb4547c24b5ff04a12d21d67 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 14 Oct 2022 07:23:56 +0000 Subject: [PATCH] Bump actions/github-script from 5 to 6.3.3 Bumps [actions/github-script](https://github.com/actions/github-script) from 5 to 6.3.3. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v5...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] --- .../workflows/detect-breaking-changes-build.yml | 2 +- .../workflows/detect-breaking-changes-report.yml | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/detect-breaking-changes-build.yml b/.github/workflows/detect-breaking-changes-build.yml index 333061c3c1d87..53245e6e4892d 100644 --- a/.github/workflows/detect-breaking-changes-build.yml +++ b/.github/workflows/detect-breaking-changes-build.yml @@ -112,7 +112,7 @@ jobs: - name: Get link for the Github Action job id: job - uses: actions/github-script@v5 + uses: actions/github-script@v6.3.3 with: script: | const script = require('./.github/workflows/scripts/pr-get-job-link.js') diff --git a/.github/workflows/detect-breaking-changes-report.yml b/.github/workflows/detect-breaking-changes-report.yml index fe535e524f5fb..38a06aa786bdf 100644 --- a/.github/workflows/detect-breaking-changes-report.yml +++ b/.github/workflows/detect-breaking-changes-report.yml @@ -17,7 +17,7 @@ jobs: - uses: actions/checkout@v2 - name: 'Download artifact' - uses: actions/github-script@v5 + uses: actions/github-script@v6.3.3 env: RUN_ID: ${{ github.event.workflow_run.id }} with: @@ -53,7 +53,7 @@ jobs: run: unzip "${ARTIFACT_FOLDER}/${ARTIFACT_NAME}.zip" -d "${ARTIFACT_FOLDER}" - name: Parsing levitate result - uses: actions/github-script@v5 + uses: actions/github-script@v6.3.3 id: levitate-run with: script: | @@ -63,7 +63,7 @@ jobs: - name: Check if "breaking change" label exists id: does-label-exist - uses: actions/github-script@v5 + uses: actions/github-script@v6.3.3 env: PR_NUMBER: ${{ github.event.workflow_run.pull_requests[0].number }} with: @@ -119,7 +119,7 @@ jobs: - name: Add "breaking change" label if: ${{ steps.levitate-run.outputs.exit_code == 1 && steps.does-label-exist.outputs.result == 0 }} - uses: actions/github-script@v5 + uses: actions/github-script@v6.3.3 env: PR_NUMBER: ${{ github.event.workflow_run.pull_requests[0].number }} with: @@ -133,7 +133,7 @@ jobs: - name: Remove "breaking change" label if: ${{ steps.levitate-run.outputs.exit_code == 0 && steps.does-label-exist.outputs.result == 1 }} - uses: actions/github-script@v5 + uses: actions/github-script@v6.3.3 env: PR_NUMBER: ${{ github.event.workflow_run.pull_requests[0].number }} with: @@ -149,7 +149,7 @@ jobs: # Related issue: https://github.com/renovatebot/renovate/issues/1908 - name: Add "grafana/plugins-platform-frontend" as a reviewer if: ${{ steps.levitate-run.outputs.exit_code == 1 }} - uses: actions/github-script@v5 + uses: actions/github-script@v6.3.3 env: PR_NUMBER: ${{ github.event.workflow_run.pull_requests[0].number }} with: @@ -164,7 +164,7 @@ jobs: - name: Remove "grafana/plugins-platform-frontend" from the list of reviewers if: ${{ steps.levitate-run.outputs.exit_code == 0 }} - uses: actions/github-script@v5 + uses: actions/github-script@v6.3.3 env: PR_NUMBER: ${{ github.event.workflow_run.pull_requests[0].number }} with: