deps(actions): bump actions/github-script from 7 to 8 (#269)

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] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Snider <snider@host.uk.com>
This commit is contained in:
dependabot[bot] 2026-02-04 01:30:54 +00:00 committed by GitHub
parent 95d49eb453
commit 15bc295fd4
2 changed files with 5 additions and 5 deletions

View file

@ -27,7 +27,7 @@ jobs:
github-token: ${{ secrets.PROJECT_TOKEN }} github-token: ${{ secrets.PROJECT_TOKEN }}
- name: Comment verification needed - name: Comment verification needed
uses: actions/github-script@v7 uses: actions/github-script@v8
with: with:
script: | script: |
const implementer = context.payload.sender.login; const implementer = context.payload.sender.login;
@ -45,7 +45,7 @@ jobs:
steps: steps:
- name: Get issue details - name: Get issue details
id: issue id: issue
uses: actions/github-script@v7 uses: actions/github-script@v8
with: with:
script: | script: |
const issue = await github.rest.issues.get({ const issue = await github.rest.issues.get({
@ -80,7 +80,7 @@ jobs:
- name: Record verification - name: Record verification
if: success() if: success()
uses: actions/github-script@v7 uses: actions/github-script@v8
with: with:
script: | script: |
const label = context.payload.label.name; const label = context.payload.label.name;
@ -113,7 +113,7 @@ jobs:
needs: check-verification needs: check-verification
steps: steps:
- name: Reset for rework - name: Reset for rework
uses: actions/github-script@v7 uses: actions/github-script@v8
with: with:
script: | script: |
// Remove verify-failed after processing // Remove verify-failed after processing

View file

@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Auto-label based on content - name: Auto-label based on content
uses: actions/github-script@v7 uses: actions/github-script@v8
with: with:
script: | script: |
const issue = context.payload.issue; const issue = context.payload.issue;