From 0fb0f7457465cba159760ff35166a079f247e28c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 25 Jun 2026 08:08:18 +0000 Subject: [PATCH] Bump the github-actions group across 1 directory with 4 updates Bumps the github-actions group with 4 updates in the / directory: [actions/github-script](https://github.com/actions/github-script), [actions/checkout](https://github.com/actions/checkout), [github/codeql-action](https://github.com/github/codeql-action) 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 `github/codeql-action` from 2 to 4 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/codeql-action/compare/v2...v4) Updates `actions/stale` from 5 to 10 - [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...v10) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - 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/stale dependency-version: '10' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: github/codeql-action dependency-version: '4' 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 | 8 ++++---- .github/workflows/round-robin.yml | 8 ++++---- .github/workflows/stale.yml | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/auto-label.yml b/.github/workflows/auto-label.yml index 975fc7b09..2015a80a6 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 0adf64394..e8349c411 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -16,18 +16,18 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v7 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@v2 + uses: github/codeql-action/init@v4 with: languages: python # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). # If this step fails, then you should remove it and run the build manually (see below) - name: Autobuild - uses: github/codeql-action/autobuild@v2 + uses: github/codeql-action/autobuild@v4 - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v2 + uses: github/codeql-action/analyze@v4 diff --git a/.github/workflows/round-robin.yml b/.github/workflows/round-robin.yml index f85b75f2e..74373b9d1 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 e891e752d..da7657995 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@v10 with: repo-token: ${{ secrets.GITHUB_TOKEN }} days-before-issue-stale: 30