From 26f9a715f62bd4fc5b1a777ff1ec72527aa19f32 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 10 Apr 2026 02:05:21 +0000 Subject: [PATCH] [Dependencies]: Bump actions/github-script from 8.0.0 to 9.0.0 Bumps [actions/github-script](https://github.com/actions/github-script) from 8.0.0 to 9.0.0. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v8...v9.0.0) --- updated-dependencies: - dependency-name: actions/github-script dependency-version: 9.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/approve-dependabot.yml | 8 ++++---- .github/workflows/build-and-publish-pre-release.yml | 4 ++-- .github/workflows/build-and-publish-release.yml | 4 ++-- .github/workflows/create-prs-for-stale-branches.yml | 10 +++++----- .github/workflows/deploy.yml | 2 +- .github/workflows/maintain-pr-description.yml | 6 +++--- .github/workflows/merge-dependabot.yml | 2 +- .github/workflows/pr-code-review-and-approve.yml | 4 ++-- .github/workflows/pr-lint.yml | 6 +++--- .github/workflows/pr-update.yml | 2 +- .github/workflows/pull-request.yml | 8 ++++---- 11 files changed, 28 insertions(+), 28 deletions(-) diff --git a/.github/workflows/approve-dependabot.yml b/.github/workflows/approve-dependabot.yml index 279e0d3f..93811133 100644 --- a/.github/workflows/approve-dependabot.yml +++ b/.github/workflows/approve-dependabot.yml @@ -61,7 +61,7 @@ jobs: } >> "$GITHUB_ENV" - name: "Check Repo Owner" - uses: actions/github-script@v8.0.0 + uses: actions/github-script@v9.0.0 with: script: | core.info('Owner: ${{github.repository_owner}}'); @@ -101,7 +101,7 @@ jobs: } >> "$GITHUB_ENV" - name: "Check Repo Owner" - uses: actions/github-script@v8.0.0 + uses: actions/github-script@v9.0.0 with: script: | core.info('Owner: ${{github.repository_owner}}'); @@ -139,7 +139,7 @@ jobs: } >> "$GITHUB_ENV" - name: "Check Repo Owner" - uses: actions/github-script@v8.0.0 + uses: actions/github-script@v9.0.0 with: script: | core.info('Owner: ${{github.repository_owner}}'); @@ -176,7 +176,7 @@ jobs: } >> "$GITHUB_ENV" - name: "Check Repo Owner" - uses: actions/github-script@v8.0.0 + uses: actions/github-script@v9.0.0 with: script: | core.info('Owner: ${{github.repository_owner}}'); diff --git a/.github/workflows/build-and-publish-pre-release.yml b/.github/workflows/build-and-publish-pre-release.yml index 375d8c81..0a26164e 100644 --- a/.github/workflows/build-and-publish-pre-release.yml +++ b/.github/workflows/build-and-publish-pre-release.yml @@ -92,7 +92,7 @@ jobs: token: ${{secrets.SOURCE_PUSH_TOKEN}} - name: "Check Runner details" - uses: actions/github-script@v8.0.0 + uses: actions/github-script@v9.0.0 with: script: | core.info('Name: ${{runner.name}}'); @@ -159,7 +159,7 @@ jobs: CREATE_RELEASE: false - name: "Build Version" - uses: actions/github-script@v8.0.0 + uses: actions/github-script@v9.0.0 with: script: | core.info('Version: \u001b[38;5;6m${{env.BUILD_VERSION}}'); diff --git a/.github/workflows/build-and-publish-release.yml b/.github/workflows/build-and-publish-release.yml index ba2e6abe..88a9646e 100644 --- a/.github/workflows/build-and-publish-release.yml +++ b/.github/workflows/build-and-publish-release.yml @@ -83,7 +83,7 @@ jobs: token: ${{secrets.SOURCE_PUSH_TOKEN}} - name: "Check Runner details" - uses: actions/github-script@v8.0.0 + uses: actions/github-script@v9.0.0 with: script: | core.info('Name: ${{runner.name}}'); @@ -150,7 +150,7 @@ jobs: CREATE_RELEASE: true - name: "Build Version" - uses: actions/github-script@v8.0.0 + uses: actions/github-script@v9.0.0 with: script: | core.info('Version: \u001b[38;5;6m${{env.BUILD_VERSION}}'); diff --git a/.github/workflows/create-prs-for-stale-branches.yml b/.github/workflows/create-prs-for-stale-branches.yml index 76083470..0a326fa1 100644 --- a/.github/workflows/create-prs-for-stale-branches.yml +++ b/.github/workflows/create-prs-for-stale-branches.yml @@ -135,7 +135,7 @@ jobs: # On Default branch - name: "On Default Branch" if: steps.detection.outputs.defaultbranch == matrix.branch - uses: actions/github-script@v8.0.0 + uses: actions/github-script@v9.0.0 with: script: | core.info("On Default branch - don't do anything"); @@ -143,7 +143,7 @@ jobs: # On Non-Default branch - name: "On Non-Default branch" if: steps.detection.outputs.defaultbranch != matrix.branch - uses: actions/github-script@v8.0.0 + uses: actions/github-script@v9.0.0 with: script: | core.info('On non-default branch'); @@ -229,7 +229,7 @@ jobs: && steps.find-pull-request.outputs.number == '' && steps.aheadbehind.outputs.ahead != 0 && steps.aheadbehind.outputs.dayssinceupdate > 7 - uses: actions/github-script@v8.0.0 + uses: actions/github-script@v9.0.0 with: script: | core.info('URL: ${{steps.open-pr.outputs.pr_url}}'); @@ -261,7 +261,7 @@ jobs: && steps.aheadbehind.outputs.behind != 0 && steps.aheadbehind.outputs.ahead != 0 && steps.aheadbehind.outputs.dayssinceupdate > 7 - uses: actions/github-script@v8.0.0 + uses: actions/github-script@v9.0.0 with: script: | core.info('Rebase?'); @@ -294,7 +294,7 @@ jobs: if: |- steps.detection.outputs.defaultbranch != matrix.branch && steps.find-pull-request.outputs.number == '' - uses: actions/github-script@v8.0.0 + uses: actions/github-script@v9.0.0 with: script: | core.info('Ahead: ${{steps.aheadbehind.outputs.ahead}}'); diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 4f5e87df..9e30a5eb 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -106,7 +106,7 @@ jobs: DOCKER_CONTAINER_REGISTRY: ${{inputs.DOCKER_CONTAINER_REGISTRY}} - name: "Log Build Version" - uses: actions/github-script@v8.0.0 + uses: actions/github-script@v9.0.0 with: script: | core.info('Application: \u001b[38;5;6m${{inputs.DOCKER_APP_OWNER}}\\${{inputs.DOCKER_APP_NAME}}'); diff --git a/.github/workflows/maintain-pr-description.yml b/.github/workflows/maintain-pr-description.yml index 03dee0d0..b9e5d35e 100644 --- a/.github/workflows/maintain-pr-description.yml +++ b/.github/workflows/maintain-pr-description.yml @@ -54,7 +54,7 @@ jobs: pr_title: ${{ github.event.pull_request.title }} - name: "Apply template and insert description" - uses: actions/github-script@v8 + uses: actions/github-script@v9.0.0 env: GENERATED_DESCRIPTION: ${{ steps.describe.outputs.description }} GITHUB_TOKEN: ${{ github.token }} @@ -161,7 +161,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Update PR description checkboxes - uses: actions/github-script@v8 + uses: actions/github-script@v9.0.0 with: script: | const maintainedMarker = ''; @@ -300,7 +300,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Update change type checkboxes based on PR files - uses: actions/github-script@v8 + uses: actions/github-script@v9.0.0 with: script: | const maintainedMarker = ''; diff --git a/.github/workflows/merge-dependabot.yml b/.github/workflows/merge-dependabot.yml index 1cb24a2e..72dfa26f 100644 --- a/.github/workflows/merge-dependabot.yml +++ b/.github/workflows/merge-dependabot.yml @@ -55,7 +55,7 @@ jobs: } >> "$GITHUB_ENV" - name: "Check Owner" - uses: actions/github-script@v8.0.0 + uses: actions/github-script@v9.0.0 with: script: | core.info('Owner: ${{github.repository_owner}}'); diff --git a/.github/workflows/pr-code-review-and-approve.yml b/.github/workflows/pr-code-review-and-approve.yml index 803a2a59..da9301ca 100644 --- a/.github/workflows/pr-code-review-and-approve.yml +++ b/.github/workflows/pr-code-review-and-approve.yml @@ -35,7 +35,7 @@ jobs: steps: - name: "Request Copilot code review" - uses: actions/github-script@v8 + uses: actions/github-script@v9.0.0 with: github-token: ${{ secrets.SOURCE_PUSH_TOKEN }} script: | @@ -61,7 +61,7 @@ jobs: steps: - name: "Enable auto-merge" - uses: actions/github-script@v8 + uses: actions/github-script@v9.0.0 with: github-token: ${{ secrets.SOURCE_PUSH_TOKEN }} script: | diff --git a/.github/workflows/pr-lint.yml b/.github/workflows/pr-lint.yml index eba95e0b..eee1d390 100644 --- a/.github/workflows/pr-lint.yml +++ b/.github/workflows/pr-lint.yml @@ -38,7 +38,7 @@ jobs: } >> "$GITHUB_ENV" - name: "Info" - uses: actions/github-script@v8.0.0 + uses: actions/github-script@v9.0.0 with: script: | core.info('Branch: ${{env.HEAD_REF}}'); @@ -79,7 +79,7 @@ jobs: - name: "Report unchanged" if: (github.actor != 'dependabot[bot]' && !endsWith(github.repository , '-template')) && env.CHANGES == '0' - uses: actions/github-script@v8.0.0 + uses: actions/github-script@v9.0.0 with: script: | core.setFailed('Changelog has not changed') @@ -153,7 +153,7 @@ jobs: ${{env.DOTNET_VERSION}} - name: "Check Runner details" - uses: actions/github-script@v8.0.0 + uses: actions/github-script@v9.0.0 with: script: | core.info('Name: ${{runner.name}}'); diff --git a/.github/workflows/pr-update.yml b/.github/workflows/pr-update.yml index 91ceab3a..8e388d21 100644 --- a/.github/workflows/pr-update.yml +++ b/.github/workflows/pr-update.yml @@ -48,7 +48,7 @@ jobs: } >> "$GITHUB_ENV" - name: "Info" - uses: actions/github-script@v8.0.0 + uses: actions/github-script@v9.0.0 with: script: | core.info('Branch: ${{env.HEAD_REF}}'); diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 8cdab1f2..093705be 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -42,7 +42,7 @@ jobs: } >> "$GITHUB_OUTPUT" - name: "Info" - uses: actions/github-script@v8.0.0 + uses: actions/github-script@v9.0.0 with: script: | core.info('Branch: ${{env.HEAD_REF}}'); @@ -88,7 +88,7 @@ jobs: - name: "Existing PR Information" if: steps.findPr.outputs.number != '' - uses: actions/github-script@v8.0.0 + uses: actions/github-script@v9.0.0 with: script: | core.info('Pull request already exists with id: ${{steps.findPr.outputs.number}}'); @@ -136,7 +136,7 @@ jobs: run: echo "create-draft=false" >> "$GITHUB_OUTPUT" - name: "Status" - uses: actions/github-script@v8.0.0 + uses: actions/github-script@v9.0.0 with: script: | core.info('Repo: ${{env.REPO}}'); @@ -162,7 +162,7 @@ jobs: - name: "New PR Details" if: steps.findPr.outputs.number == '' - uses: actions/github-script@v8.0.0 + uses: actions/github-script@v9.0.0 with: script: | core.info('URL: ${{steps.open-pr.outputs.pr_url}}');