From d2630efaa0d4cb3eb2ecc1b3c1cebad15a4b739b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 29 May 2026 05:06:06 +0000 Subject: [PATCH] Bump actions/stale from 9 to 10 Bumps [actions/stale](https://github.com/actions/stale) from 9 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/v9...v10) --- updated-dependencies: - dependency-name: actions/stale dependency-version: '10' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/stale-pull-requests.yml | 32 +++++++++++------------ 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/stale-pull-requests.yml b/.github/workflows/stale-pull-requests.yml index 743c0a8128..8bb947eacd 100644 --- a/.github/workflows/stale-pull-requests.yml +++ b/.github/workflows/stale-pull-requests.yml @@ -1,16 +1,16 @@ -name: Mark stale PRs -on: - schedule: - - cron: '0 1 * * 3' # Every Wednesday at 1am UTC - -jobs: - stale: - runs-on: ubuntu-latest - steps: - - uses: actions/stale@v9 - with: - stale-pr-message: 'Things seem to have gone quiet on this PR. There has been no activity for 60 days, so it will be closed in 14 days if there is still no movement.' - close-pr-message: 'Closing due to inactivity.' - days-before-pr-stale: 60 - days-before-pr-close: 14 - stale-pr-label: 'stale' +name: Mark stale PRs +on: + schedule: + - cron: '0 1 * * 3' # Every Wednesday at 1am UTC + +jobs: + stale: + runs-on: ubuntu-latest + steps: + - uses: actions/stale@v10 + with: + stale-pr-message: 'Things seem to have gone quiet on this PR. There has been no activity for 60 days, so it will be closed in 14 days if there is still no movement.' + close-pr-message: 'Closing due to inactivity.' + days-before-pr-stale: 60 + days-before-pr-close: 14 + stale-pr-label: 'stale'