From 559100e33125063820fd0b2b85d958521d162689 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 17 Apr 2026 00:25:48 +0000 Subject: [PATCH] Bump actions/github-script from 8 to 9 Bumps [actions/github-script](https://github.com/actions/github-script) from 8 to 9. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v8...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/check-copilot-template.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/check-copilot-template.yml b/.github/workflows/check-copilot-template.yml index 01162bdb..fc726393 100644 --- a/.github/workflows/check-copilot-template.yml +++ b/.github/workflows/check-copilot-template.yml @@ -76,7 +76,7 @@ jobs: - name: Check for existing issues id: issue-check - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const { data: issues } = await github.rest.issues.listForRepo({ @@ -101,7 +101,7 @@ jobs: - name: Create initial setup issue if: steps.version-check.outputs.setup_needed == 'true' && steps.issue-check.outputs.has_existing_issue == 'false' - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const title = '🤖 Setup ioBroker GitHub Copilot Instructions'; @@ -140,7 +140,7 @@ jobs: - name: Create update issue if: steps.version-check.outputs.update_needed == 'true' && steps.issue-check.outputs.has_existing_issue == 'false' - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const title = '🤖 Update ioBroker Copilot Instructions Template';