From aa36637421aa823251516cc94a311834092a9262 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Feb 2026 00:58:44 +0000 Subject: [PATCH] Bump actions/github-script from 3.1.0 to 8.0.0 Bumps [actions/github-script](https://github.com/actions/github-script) from 3.1.0 to 8.0.0. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/47f7cf65b5ced0830a325f705cad64f2f58dddf7...ed597411d8f924073f98dfc5c65a23a2325f34cd) --- updated-dependencies: - dependency-name: actions/github-script dependency-version: 8.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/add-milestone-to-pull-requests.yaml | 4 ++-- .github/workflows/increment-milestones-on-tag.yaml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/add-milestone-to-pull-requests.yaml b/.github/workflows/add-milestone-to-pull-requests.yaml index da8afee46..b9a818331 100644 --- a/.github/workflows/add-milestone-to-pull-requests.yaml +++ b/.github/workflows/add-milestone-to-pull-requests.yaml @@ -18,7 +18,7 @@ jobs: steps: - name: Get project milestones id: milestones - uses: actions/github-script@47f7cf65b5ced0830a325f705cad64f2f58dddf7 # 3.1.0 + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # 8.0.0 with: github-token: ${{secrets.GITHUB_TOKEN}} script: | @@ -34,7 +34,7 @@ jobs: return milestones.length == 0 ? null : milestones[0].number - name: Update Pull Request if: steps.milestones.outputs.result != null - uses: actions/github-script@47f7cf65b5ced0830a325f705cad64f2f58dddf7 # 3.1.0 + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # 8.0.0 with: github-token: ${{secrets.GITHUB_TOKEN}} script: | diff --git a/.github/workflows/increment-milestones-on-tag.yaml b/.github/workflows/increment-milestones-on-tag.yaml index ebba98f6f..2f9cf34a9 100644 --- a/.github/workflows/increment-milestones-on-tag.yaml +++ b/.github/workflows/increment-milestones-on-tag.yaml @@ -13,7 +13,7 @@ jobs: steps: - name: Get milestone title id: milestoneTitle - uses: actions/github-script@47f7cf65b5ced0830a325f705cad64f2f58dddf7 # 3.1.0 + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # 8.0.0 with: result-encoding: string script: | @@ -21,7 +21,7 @@ jobs: return '${{github.event.ref}}'.startsWith('v_') ? '${{github.event.ref}}'.substring(2) : '${{github.event.ref}}'; - name: Get milestone for tag id: milestone - uses: actions/github-script@47f7cf65b5ced0830a325f705cad64f2f58dddf7 # 3.1.0 + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # 8.0.0 with: github-token: ${{secrets.GITHUB_TOKEN}} script: | @@ -40,7 +40,7 @@ jobs: } - name: Close milestone if: fromJSON(steps.milestone.outputs.result) - uses: actions/github-script@47f7cf65b5ced0830a325f705cad64f2f58dddf7 # 3.1.0 + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # 8.0.0 with: github-token: ${{secrets.GITHUB_TOKEN}} script: |