From 991a30b9d6a6697863116d5f672696320611ba68 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 5 Jun 2026 12:33:15 +0000 Subject: [PATCH] [GHA] Dependabot: Bump actions/github-script from 7 to 9 Bumps [actions/github-script](https://github.com/actions/github-script) from 7 to 9. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v7...v9) --- updated-dependencies: - dependency-name: actions/github-script dependency-version: '9' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/e2e-tests.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/e2e-tests.yaml b/.github/workflows/e2e-tests.yaml index 3f26be8d82b..eac9e7b3145 100644 --- a/.github/workflows/e2e-tests.yaml +++ b/.github/workflows/e2e-tests.yaml @@ -75,14 +75,14 @@ jobs: - name: Fail if tests failed if: steps.e2e-tests.outcome != 'success' - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: script: | core.setFailed('E2E tests failed') - name: Pass if tests pass if: steps.e2e-tests.outcome == 'success' - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: script: | core.setCommandEcho('E2E tests passed') @@ -134,7 +134,7 @@ jobs: - name: Generate Report URL if: ${{ !cancelled() }} id: report-url - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: script: | core.setOutput('report-url', 'https://childmindinstitute.github.io/mindlogger-backend-refactor/e2e/${{ github.run_number }}')