From fed5bcad573d7b1baa4f749c0c912c8bb482e19f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 7 Oct 2025 11:42:36 +0000 Subject: [PATCH] Bump actions/github-script from 7 to 8 Bumps [actions/github-script](https://github.com/actions/github-script) from 7 to 8. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v7...v8) --- updated-dependencies: - dependency-name: actions/github-script dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/create-fork.yaml | 2 +- .github/workflows/tf-plan.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/create-fork.yaml b/.github/workflows/create-fork.yaml index cb816cc..b9c1ced 100644 --- a/.github/workflows/create-fork.yaml +++ b/.github/workflows/create-fork.yaml @@ -39,7 +39,7 @@ jobs: - name: Parse and validate input id: parse-upstream - uses: actions/github-script@v7 + uses: actions/github-script@v8 env: UPSTREAM_REPO: ${{ inputs.upstream_repo }} FORK_NAME: ${{ inputs.fork_name }} diff --git a/.github/workflows/tf-plan.yaml b/.github/workflows/tf-plan.yaml index 592a051..f499dca 100644 --- a/.github/workflows/tf-plan.yaml +++ b/.github/workflows/tf-plan.yaml @@ -74,7 +74,7 @@ jobs: - name: Post the plan summary as comment on the PR if: steps.graformer.outputs.plan-exitcode != '1' - uses: actions/github-script@v7 + uses: actions/github-script@v8 id: generate-comment env: PLAN_SUMMARY: ${{ steps.graformer.outputs.plan-summary }} @@ -139,7 +139,7 @@ jobs: - name: Finalize check-run if: always() - uses: actions/github-script@v7 + uses: actions/github-script@v8 env: PLAN_EXITCODE: ${{ steps.graformer.outputs.plan-exitcode }} PLAN_SUMMARY: ${{ steps.generate-comment.outputs.result }}