From 1777690d2576987ea85bc339f33045afbcf86564 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 15 Sep 2026 22:15:53 +0000 Subject: [PATCH] Bump actions/github-script from 7.1.0 to 9.0.0 Bumps [actions/github-script](https://github.com/actions/github-script) from 7.1.0 to 9.0.0. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/f28e40c7f34bde8b3046d885e986cb6290c5673b...3a2844b7e9c422d3c10d287c895573f7108da1b3) --- 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-or-deny-request.yml | 4 ++-- .github/workflows/initialize-request.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/approve-or-deny-request.yml b/.github/workflows/approve-or-deny-request.yml index f695f31..bff7973 100644 --- a/.github/workflows/approve-or-deny-request.yml +++ b/.github/workflows/approve-or-deny-request.yml @@ -27,7 +27,7 @@ jobs: uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4 - name: Validate requested repository if: steps.issue_body_parser_request.outputs.payload != 'NOT_FOUND' - uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7 + uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0 env: REQUEST_PAYLOAD: ${{ steps.issue_body_parser_request.outputs.payload }} with: @@ -66,7 +66,7 @@ jobs: cd .github/scripts npm install - name: Approve or deny request - uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7 + uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0 env: VERSION: ${{ steps.get_version.outputs.version }} REPO: ${{ fromJson(needs.parse-issue.outputs.payload).repo }} diff --git a/.github/workflows/initialize-request.yml b/.github/workflows/initialize-request.yml index d69e747..f56e4a9 100644 --- a/.github/workflows/initialize-request.yml +++ b/.github/workflows/initialize-request.yml @@ -27,7 +27,7 @@ jobs: uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4 - name: Validate requested repository if: steps.issue_body_parser_request.outputs.payload != 'NOT_FOUND' - uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7 + uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0 env: REQUEST_PAYLOAD: ${{ steps.issue_body_parser_request.outputs.payload }} with: @@ -70,7 +70,7 @@ jobs: cd .github/scripts npm install - name: Create the repo ${{ fromJson(needs.parse-issue.outputs.payload).repo }}_${{ steps.get_version.outputs.version }} on GitHub Enterprise Server - uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7 + uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0 env: VERSION: ${{ steps.get_version.outputs.version }} OWNER: ${{ fromJson(needs.parse-issue.outputs.payload).owner }}