From 3145dccc6cbe07cbd395b551c56f297fbd88fcdd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 02:43:43 +0000 Subject: [PATCH] Bump actions/github-script from 7 to 9 Bumps [actions/github-script](https://github.com/actions/github-script) from 7 to 9. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v7...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/publish.yml | 2 +- .github/workflows/skip_gaudi_tests.yml | 4 ++-- .github/workflows/trigger_jenkins.yml | 12 ++++++------ 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index bfd02879965e..821d674e0a9d 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -30,7 +30,7 @@ jobs: - name: Create Release id: create_release - uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 + uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0 env: RELEASE_TAG: ${{ env.release_tag }} with: diff --git a/.github/workflows/skip_gaudi_tests.yml b/.github/workflows/skip_gaudi_tests.yml index fcd1ed4c4a57..84202b924bad 100644 --- a/.github/workflows/skip_gaudi_tests.yml +++ b/.github/workflows/skip_gaudi_tests.yml @@ -48,7 +48,7 @@ jobs: fetch-depth: 0 token: ${{ secrets.GH_PAT }} - name: Create Commit Status(Success) - uses: actions/github-script@v7 + uses: actions/github-script@v9 if: success() env: GIT_SHA: ${{ needs.read_codeowners.outputs.pr_sha }} @@ -63,7 +63,7 @@ jobs: context: 'Summarize Test Results' }); - name: Create Commit Status(Failure) - uses: actions/github-script@v7 + uses: actions/github-script@v9 if: failure() env: GIT_SHA: ${{ needs.read_codeowners.outputs.pr_sha }} diff --git a/.github/workflows/trigger_jenkins.yml b/.github/workflows/trigger_jenkins.yml index f61e98e9da1e..ce635bc604cf 100644 --- a/.github/workflows/trigger_jenkins.yml +++ b/.github/workflows/trigger_jenkins.yml @@ -128,7 +128,7 @@ jobs: TEST_COMMAND: ${{ matrix.tests.command }} steps: - name: Get Job ID - uses: actions/github-script@v7 + uses: actions/github-script@v9 id: fetch_job_id with: script: | @@ -195,7 +195,7 @@ jobs: echo "url=$url" >> $GITHUB_OUTPUT - name: Create Commit Status(Pending) - uses: actions/github-script@v7 + uses: actions/github-script@v9 env: GIT_SHA: ${{ needs.read_codeowners.outputs.pr_sha }} TARGET_URL: ${{ steps.job_url.outputs.url }} @@ -274,7 +274,7 @@ jobs: fi exit $test_status - name: Create Commit Status(Failure) - uses: actions/github-script@v7 + uses: actions/github-script@v9 if: failure() env: GIT_SHA: ${{ needs.read_codeowners.outputs.pr_sha }} @@ -292,7 +292,7 @@ jobs: context: `Test / ${process.env.JOB_NAME}` }); - name: Create Commit Status(Success) - uses: actions/github-script@v7 + uses: actions/github-script@v9 if: success() env: GIT_SHA: ${{ needs.read_codeowners.outputs.pr_sha }} @@ -331,7 +331,7 @@ jobs: exit 1 fi - name: Create Commit Status(Success) - uses: actions/github-script@v7 + uses: actions/github-script@v9 if: success() env: GIT_SHA: ${{ needs.read_codeowners.outputs.pr_sha }} @@ -346,7 +346,7 @@ jobs: context: 'Summarize Test Results' }); - name: Create Commit Status(Failure) - uses: actions/github-script@v7 + uses: actions/github-script@v9 if: failure() env: GIT_SHA: ${{ needs.read_codeowners.outputs.pr_sha }}