From 8914fadb591fd72f104879c898c1f82091d91fbc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 24 Mar 2026 17:36:52 +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/pr-lint.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr-lint.yaml b/.github/workflows/pr-lint.yaml index 4e94686e..299cb96d 100644 --- a/.github/workflows/pr-lint.yaml +++ b/.github/workflows/pr-lint.yaml @@ -11,7 +11,7 @@ jobs: # 1) Validate the branch name without using shell (no user input in `run`) - name: Check ticket name conforms to requirements id: validate-branch - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const ref = context.payload.pull_request?.head?.ref || ''; @@ -27,7 +27,7 @@ jobs: contains(github.event.pull_request.head.ref, 'APM-') || contains(github.event.pull_request.head.ref, 'amb-') || contains(github.event.pull_request.head.ref, 'AMB-') - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: result-encoding: string script: |