From 0331e6dfa0ef438b4bf08124accf0038de0960cc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 6 Aug 2026 08:10:39 +0000 Subject: [PATCH] Bump the github-actions group across 1 directory with 3 updates Bumps the github-actions group with 3 updates in the / directory: [actions/github-script](https://github.com/actions/github-script), [actions/checkout](https://github.com/actions/checkout) and [actions/stale](https://github.com/actions/stale). Updates `actions/github-script` from 6 to 9 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6...v9) Updates `actions/checkout` from 3 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v7) Updates `actions/stale` from 5 to 11 - [Release notes](https://github.com/actions/stale/releases) - [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/stale/compare/v5...v11) --- updated-dependencies: - dependency-name: actions/github-script dependency-version: '9' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/stale dependency-version: '11' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/auto-label.yml | 2 +- .github/workflows/codeql.yml | 2 +- .github/workflows/round-robin.yml | 8 ++++---- .github/workflows/stale.yml | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/auto-label.yml b/.github/workflows/auto-label.yml index 975fc7b0..2015a80a 100644 --- a/.github/workflows/auto-label.yml +++ b/.github/workflows/auto-label.yml @@ -15,7 +15,7 @@ jobs: if: contains(github.event.issue.labels.*.name, 'waiting for response') && !contains(github.event.issue.labels.*.name, 'user responded') steps: - name: Add/Remove labels when user responds - uses: actions/github-script@v6 + uses: actions/github-script@v9 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: | diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 0adf6439..1c01309d 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -16,7 +16,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v7 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/round-robin.yml b/.github/workflows/round-robin.yml index f85b75f2..74373b9d 100644 --- a/.github/workflows/round-robin.yml +++ b/.github/workflows/round-robin.yml @@ -14,7 +14,7 @@ jobs: steps: - name: Find last assigned id: assigned - uses: actions/github-script@v6.3.3 + uses: actions/github-script@v9 with: github-token: ${{secrets.GITHUB_TOKEN}} result-encoding: string @@ -39,7 +39,7 @@ jobs: NEXT_ROTATION: ${{ steps.rotation.outputs.next }} run: echo "$NEXT_ROTATION" - name: Assign to next person - uses: actions/github-script@v6.3.3 + uses: actions/github-script@v9 with: github-token: ${{secrets.GITHUB_TOKEN}} script: | @@ -50,7 +50,7 @@ jobs: assignees: ['${{ steps.rotation.outputs.next }}'] }) - name: Give it the label 'needs repro' - uses: actions/github-script@v6.3.3 + uses: actions/github-script@v9 with: github-token: ${{secrets.GITHUB_TOKEN}} script: | @@ -61,7 +61,7 @@ jobs: labels: ['needs repro'] }) - name: Save assignment to state - uses: actions/github-script@v6.3.3 + uses: actions/github-script@v9 with: github-token: ${{secrets.GITHUB_TOKEN}} script: | diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index e891e752..ea8ab293 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -25,7 +25,7 @@ jobs: issues: write steps: - - uses: actions/stale@v5 + - uses: actions/stale@v11 with: repo-token: ${{ secrets.GITHUB_TOKEN }} days-before-issue-stale: 30