From 8c816280adbbbf2007c2d5ab8ad9eebe1d9da4a8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Sep 2025 01:03:44 +0000 Subject: [PATCH] github-actions: 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/pr-env-deploy.yml | 6 +++--- .github/workflows/pr-env-destroy.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pr-env-deploy.yml b/.github/workflows/pr-env-deploy.yml index d5ac9a878..ac8c5b9aa 100644 --- a/.github/workflows/pr-env-deploy.yml +++ b/.github/workflows/pr-env-deploy.yml @@ -92,7 +92,7 @@ jobs: path: dist/nrlf_permissions.zip - name: Add Failure Pull Request Comment - uses: actions/github-script@v7 + uses: actions/github-script@v8 if: ${{ failure() }} with: script: | @@ -162,7 +162,7 @@ jobs: run: terraform -chdir=terraform/infrastructure apply tfplan - name: Add Success Pull Request Comment - uses: actions/github-script@v7 + uses: actions/github-script@v8 if: ${{ success() }} with: script: | @@ -174,7 +174,7 @@ jobs: }) - name: Add Failure Pull Request Comment - uses: actions/github-script@v7 + uses: actions/github-script@v8 if: ${{ failure() }} with: script: | diff --git a/.github/workflows/pr-env-destroy.yml b/.github/workflows/pr-env-destroy.yml index ab8f2f4bd..abf017539 100644 --- a/.github/workflows/pr-env-destroy.yml +++ b/.github/workflows/pr-env-destroy.yml @@ -92,7 +92,7 @@ jobs: terraform -chdir=terraform/infrastructure workspace delete ${{ needs.set-environment-id.outputs.environment_id }} - name: Add Failure Pull Request Comment - uses: actions/github-script@v7 + uses: actions/github-script@v8 if: ${{ failure() }} with: script: |