From d2d5997d8437625879459898b5eeae8c2e0b5fed Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 2 May 2026 01:56:09 +0000 Subject: [PATCH] gh-actions(deps): bump actions/github-script from 6 to 9 Bumps [actions/github-script](https://github.com/actions/github-script) from 6 to 9. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6...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/ci.yml | 2 +- .github/workflows/is-repo-lint.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1ee5d87..b9371d7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -167,7 +167,7 @@ jobs: echo "has_changes=$( [ $EXIT_CODE -ne 0 ] && echo 'true' || echo 'false' )" >> "$GITHUB_OUTPUT" - name: Post CDK diff comment - uses: actions/github-script@v7 + uses: actions/github-script@v9 # Pass data via env so script content is static — avoids JS parser # errors when diff output contains `${...}` (CloudFormation tokens). env: diff --git a/.github/workflows/is-repo-lint.yml b/.github/workflows/is-repo-lint.yml index 1f8f1d2..31eecdc 100644 --- a/.github/workflows/is-repo-lint.yml +++ b/.github/workflows/is-repo-lint.yml @@ -160,7 +160,7 @@ jobs: env: MY_KEY: ${{ secrets.CLA_BOT_GH_ACCESS_TOKEN }} if: "${{ env.MY_KEY == '' }}" - uses: actions/github-script@v6 + uses: actions/github-script@v9 with: script: | core.setFailed('CLA_BOT_GH_ACCESS_TOKEN secret is missing. It is needed to successfully run the CLA assistant.')