From 341702588d5d1886579d247c9b72ad5c77b7e424 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 4 Jul 2024 03:26:48 +0000 Subject: [PATCH] chore(deps): bump actions/github-script from 6 to 7 Bumps [actions/github-script](https://github.com/actions/github-script) from 6 to 7. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/integration-tests.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integration-tests.yaml b/.github/workflows/integration-tests.yaml index f664030f..7d83dd37 100644 --- a/.github/workflows/integration-tests.yaml +++ b/.github/workflows/integration-tests.yaml @@ -28,7 +28,7 @@ jobs: ref: ${{ inputs.commit-to-test }} - name: Set status to pending if: ${{ github.event_name == 'workflow_dispatch' }} - uses: actions/github-script@v6 + uses: actions/github-script@v7 with: script: | github.rest.repos.createCommitStatus({ @@ -70,7 +70,7 @@ jobs: if: ${{ always() }} - name: Set status to success if: ${{ github.event_name == 'workflow_dispatch' && success() }} - uses: actions/github-script@v6 + uses: actions/github-script@v7 with: script: | github.rest.repos.createCommitStatus({ @@ -83,7 +83,7 @@ jobs: }) - name: Set status to failure if: ${{ github.event_name == 'workflow_dispatch' && failure() }} - uses: actions/github-script@v6 + uses: actions/github-script@v7 with: script: | github.rest.repos.createCommitStatus({