From 3b3a85cccaf8c4a2c3c4d93ce89ceb5efa6defdb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Aug 2022 07:24:44 +0000 Subject: [PATCH] Bump actions/github-script from 5.0.0 to 6.2.0 Bumps [actions/github-script](https://github.com/actions/github-script) from 5.0.0 to 6.2.0. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/441359b1a30438de65712c2fbca0abe4816fa667...c713e510dbd7d213d92d41b7a7805a986f4c5c66) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/slack-notifications.yml | 6 +++--- .github/workflows/test-old-branches.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/slack-notifications.yml b/.github/workflows/slack-notifications.yml index 7a58813648..1f22f01748 100644 --- a/.github/workflows/slack-notifications.yml +++ b/.github/workflows/slack-notifications.yml @@ -71,7 +71,7 @@ jobs: - name: Get the workflow ID id: current-workflow-id if: ${{ github.event_name == 'push' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' }} - uses: actions/github-script@441359b1a30438de65712c2fbca0abe4816fa667 # v5.0.0 + uses: actions/github-script@c713e510dbd7d213d92d41b7a7805a986f4c5c66 # v5.0.0 with: script: | const workflow_run = await github.rest.actions.getWorkflowRun({ @@ -83,7 +83,7 @@ jobs: - name: Get details about the previous workflow run id: previous-result - uses: actions/github-script@441359b1a30438de65712c2fbca0abe4816fa667 # v5.0.0 + uses: actions/github-script@c713e510dbd7d213d92d41b7a7805a986f4c5c66 # v5.0.0 with: script: | const previous_runs = await github.rest.actions.listWorkflowRuns({ @@ -102,7 +102,7 @@ jobs: - name: Get the commit message id: current-commit-message - uses: actions/github-script@441359b1a30438de65712c2fbca0abe4816fa667 # v5.0.0 + uses: actions/github-script@c713e510dbd7d213d92d41b7a7805a986f4c5c66 # v5.0.0 if: ${{ github.event_name == 'workflow_dispatch' || github.event_name == 'schedule' }} with: script: | diff --git a/.github/workflows/test-old-branches.yml b/.github/workflows/test-old-branches.yml index 0770295d13..a035e5cad7 100644 --- a/.github/workflows/test-old-branches.yml +++ b/.github/workflows/test-old-branches.yml @@ -58,7 +58,7 @@ jobs: # Run all branches monthly, but only the currently supported one twice per month. steps: - name: Dispatch workflow run - uses: actions/github-script@441359b1a30438de65712c2fbca0abe4816fa667 # v5.0.0 + uses: actions/github-script@c713e510dbd7d213d92d41b7a7805a986f4c5c66 # v5.0.0 if: ${{ github.event_name == 'push' || github.event.schedule == '0 0 15 * *' || matrix.branch == '5.7' }} with: github-token: ${{ secrets.GHA_OLD_BRANCH_DISPATCH }}