From f5b92b629c52af2d225b9960b4380e71cb7c1b1e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Oct 2025 11:09:45 +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/reusable_build-push.yml | 2 +- .github/workflows/reusable_validate-branch.yml | 2 +- .github/workflows/reusable_validate-release-tag.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/reusable_build-push.yml b/.github/workflows/reusable_build-push.yml index 0431a24..91eaa44 100644 --- a/.github/workflows/reusable_build-push.yml +++ b/.github/workflows/reusable_build-push.yml @@ -42,7 +42,7 @@ jobs: - name: Create github action tags from image tags id: tags - uses: actions/github-script@v6 + uses: actions/github-script@v8 with: result-encoding: string script: | diff --git a/.github/workflows/reusable_validate-branch.yml b/.github/workflows/reusable_validate-branch.yml index dc238ff..c474595 100644 --- a/.github/workflows/reusable_validate-branch.yml +++ b/.github/workflows/reusable_validate-branch.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Validate build branch - uses: actions/github-script@v6 + uses: actions/github-script@v8 with: script: | const buildBranch = '${{ inputs.build_branch }}'; diff --git a/.github/workflows/reusable_validate-release-tag.yml b/.github/workflows/reusable_validate-release-tag.yml index 32174f0..c194df6 100644 --- a/.github/workflows/reusable_validate-release-tag.yml +++ b/.github/workflows/reusable_validate-release-tag.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Validate that release tag as a proper semantic version - uses: actions/github-script@v6 + uses: actions/github-script@v8 with: script: | const releaseTag = '${{ inputs.release_tag }}';