From 22c11da8577a2588d3839dd799082d2f96420b68 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 29 Mar 2026 12:53:11 +0000 Subject: [PATCH] [Dependencies]: 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/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-lint.yml | 6 +++--- .github/workflows/pr-update.yml | 2 +- .github/workflows/pull-request.yml | 8 ++++---- 10 files changed, 26 insertions(+), 26 deletions(-) diff --git a/.github/workflows/approve-dependabot.yml b/.github/workflows/approve-dependabot.yml index 279e0d3f..2570697b 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@v8 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@v8 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@v8 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@v8 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..749b82ef 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@v8 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@v8 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..ade02453 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@v8 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@v8 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..bf90be39 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@v8 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@v8 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@v8 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@v8 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@v8 with: script: | core.info('Ahead: ${{steps.aheadbehind.outputs.ahead}}'); diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 4f5e87df..48f4b969 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@v8 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 14314071..bb31c0d2 100644 --- a/.github/workflows/maintain-pr-description.yml +++ b/.github/workflows/maintain-pr-description.yml @@ -52,7 +52,7 @@ jobs: github_token: ${{ github.token }} - name: "Apply template and insert description" - uses: actions/github-script@v7 + uses: actions/github-script@v8 env: GENERATED_DESCRIPTION: ${{ steps.describe.outputs.description }} GITHUB_TOKEN: ${{ github.token }} @@ -159,7 +159,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Update PR description checkboxes - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const maintainedMarker = ''; @@ -298,7 +298,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Update change type checkboxes based on PR files - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const maintainedMarker = ''; diff --git a/.github/workflows/merge-dependabot.yml b/.github/workflows/merge-dependabot.yml index 1cb24a2e..fa35b229 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@v8 with: script: | core.info('Owner: ${{github.repository_owner}}'); diff --git a/.github/workflows/pr-lint.yml b/.github/workflows/pr-lint.yml index cb6b7774..db601940 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@v8 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@v8 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@v8 with: script: | core.info('Name: ${{runner.name}}'); diff --git a/.github/workflows/pr-update.yml b/.github/workflows/pr-update.yml index 91ceab3a..6c866379 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@v8 with: script: | core.info('Branch: ${{env.HEAD_REF}}'); diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 8cdab1f2..766708dd 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@v8 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@v8 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@v8 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@v8 with: script: | core.info('URL: ${{steps.open-pr.outputs.pr_url}}');