From aee40c73b2900551f1241c7fa82776dc43143c28 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Feb 2026 14:20:02 +0000 Subject: [PATCH] Bump actions/github-script from 6 to 8 Bumps [actions/github-script](https://github.com/actions/github-script) from 6 to 8. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6...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/auto-assign-issues.yml | 2 +- .github/workflows/code-of-conduct.yml | 2 +- .github/workflows/dependabot-automation.yml | 6 +++--- .github/workflows/issue-translator.yml | 6 +++--- .github/workflows/notify-on-failure.yml | 2 +- .github/workflows/project-automation.yml | 4 ++-- .github/workflows/request-info.yml | 2 +- .github/workflows/status.yml | 2 +- .github/workflows/welcome-contributors.yml | 2 +- 9 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/auto-assign-issues.yml b/.github/workflows/auto-assign-issues.yml index 951a1d5..393b8fa 100644 --- a/.github/workflows/auto-assign-issues.yml +++ b/.github/workflows/auto-assign-issues.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Auto-assign based on labels - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const issue = context.payload.issue; diff --git a/.github/workflows/code-of-conduct.yml b/.github/workflows/code-of-conduct.yml index f8ee4da..9e89586 100644 --- a/.github/workflows/code-of-conduct.yml +++ b/.github/workflows/code-of-conduct.yml @@ -23,7 +23,7 @@ jobs: replacement-strategy: Redaction - name: Check for spam patterns - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const body = context.payload.comment?.body || diff --git a/.github/workflows/dependabot-automation.yml b/.github/workflows/dependabot-automation.yml index 883059a..e29280a 100644 --- a/.github/workflows/dependabot-automation.yml +++ b/.github/workflows/dependabot-automation.yml @@ -14,7 +14,7 @@ jobs: uses: actions/checkout@v4 - name: Auto-approve dependabot PRs (patch and minor) - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const pr = context.payload.pull_request; @@ -39,7 +39,7 @@ jobs: } - name: Enable auto-merge for dependabot PRs - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const pr = context.payload.pull_request; @@ -69,7 +69,7 @@ jobs: - name: Label dependency changes if: steps.deps.outputs.dependencies_changed == 'true' - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | github.rest.issues.addLabels({ diff --git a/.github/workflows/issue-translator.yml b/.github/workflows/issue-translator.yml index e9712dc..ab65d1b 100644 --- a/.github/workflows/issue-translator.yml +++ b/.github/workflows/issue-translator.yml @@ -12,7 +12,7 @@ jobs: if: ${{ !contains(github.event.issue.labels.*.name, 'translated') }} steps: - name: Detect language - uses: actions/github-script@v7 + uses: actions/github-script@v8 id: detect with: script: | @@ -27,7 +27,7 @@ jobs: - name: Add translation label if: steps.detect.outputs.isEnglish == 'false' - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | github.rest.issues.addLabels({ @@ -39,7 +39,7 @@ jobs: - name: Comment translation notice if: steps.detect.outputs.isEnglish == 'false' - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const translations = { diff --git a/.github/workflows/notify-on-failure.yml b/.github/workflows/notify-on-failure.yml index 7f3a769..f74d7bd 100644 --- a/.github/workflows/notify-on-failure.yml +++ b/.github/workflows/notify-on-failure.yml @@ -31,7 +31,7 @@ jobs: [View Run](${{ github.event.workflow_run.html_url }}) - name: Create issue for recurring failures - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const workflowName = context.payload.workflow_run.name; diff --git a/.github/workflows/project-automation.yml b/.github/workflows/project-automation.yml index 09eaf6d..958b595 100644 --- a/.github/workflows/project-automation.yml +++ b/.github/workflows/project-automation.yml @@ -14,7 +14,7 @@ jobs: steps: - name: Add triage label to new issues if: github.event_name == 'issues' && github.event.action == 'opened' - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | github.rest.issues.addLabels({ @@ -77,7 +77,7 @@ jobs: uses: actions/checkout@v4 - name: Check if PR is stale - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const pr = context.payload.pull_request; diff --git a/.github/workflows/request-info.yml b/.github/workflows/request-info.yml index 9d72dd5..d6b4ae4 100644 --- a/.github/workflows/request-info.yml +++ b/.github/workflows/request-info.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check issue/PR for missing info - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const issue = context.payload.issue || context.payload.pull_request; diff --git a/.github/workflows/status.yml b/.github/workflows/status.yml index 01bfdbe..f927ad8 100644 --- a/.github/workflows/status.yml +++ b/.github/workflows/status.yml @@ -26,7 +26,7 @@ jobs: echo "- Last Commit: ${{ github.event.repository.pushed_at }}" >> status-report.md - name: Create Issue - uses: actions/github-script@v6 + uses: actions/github-script@v8 with: script: | const fs = require('fs'); diff --git a/.github/workflows/welcome-contributors.yml b/.github/workflows/welcome-contributors.yml index 81f125d..85008ec 100644 --- a/.github/workflows/welcome-contributors.yml +++ b/.github/workflows/welcome-contributors.yml @@ -44,7 +44,7 @@ jobs: if: github.event_name == 'pull_request' && github.event.action == 'closed' && github.event.pull_request.merged == true steps: - name: Thank merged contributors - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const pr = context.payload.pull_request;