Skip to content

chore(deps): update actions/stale action to v10 - #64

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/actions-stale-10.x
Open

chore(deps): update actions/stale action to v10#64
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/actions-stale-10.x

Conversation

@renovate

@renovate renovate Bot commented May 2, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Type Update Change
actions/stale action major v3v10

Release Notes

actions/stale (actions/stale)

v10.4.0

Compare Source

What's Changed

Bug Fix
Dependency Updates
  • Bump undici to 6.27.0 via override, clean up stale license files, and version to 10.4.0. by @​dependabot in #​1342

New Contributors

Full Changelog: actions/stale@v10.3.0...v10.4.0

v10.3.0

Compare Source

What's Changed

Bug Fix
Dependency Updates

New Contributors

Full Changelog: actions/stale@v10...v10.3.0

v10.2.0

Compare Source

What's Changed

Bug Fix
Dependency Updates

New Contributors

Full Changelog: actions/stale@v10...v10.2.0

v10.1.1

Compare Source

What's Changed

Bug Fix
Improvement
Dependency Upgrades

New Contributors

Full Changelog: actions/stale@v10...v10.1.1

v10.1.0

Compare Source

What's Changed

New Contributors

Full Changelog: actions/stale@v10...v10.1.0

v10.0.0

Compare Source

What's Changed

Breaking Changes
Enhancement
Dependency Upgrades
Documentation changes

New Contributors

Full Changelog: actions/stale@v9...v10.0.0

v10

Compare Source

v9.1.0

Compare Source

What's Changed

New Contributors

Full Changelog: actions/stale@v9...v9.1.0

v9.0.0

Compare Source

Breaking Changes

  1. Action is now stateful: If the action ends because of operations-per-run then the next run will start from the first unprocessed issue skipping the issues processed during the previous run(s). The state is reset when all the issues are processed. This should be considered for scheduling workflow runs.
  2. Version 9 of this action updated the runtime to Node.js 20. All scripts are now run with Node.js 20 instead of Node.js 16 and are affected by any breaking changes between Node.js 16 and 20.

What Else Changed

  1. Performance optimization that removes unnecessary API calls by @​dsame #​1033 fixes #​792
  2. Logs displaying current github API rate limit by @​dsame #​1032 addresses #​1029

For more information, please read the action documentation and its section about statefulness

New Contributors

Full Changelog: actions/stale@v8...v9.0.0

v9

Compare Source

v8.0.0

Compare Source

⚠️ This version contains breaking changes ⚠️

What's Changed

  • New option labels-to-remove-when-stale enables users to specify list of comma delimited labels that will be removed when the issue or PR becomes stale by @​panticmilos #​770
  • Skip deleting the branch in the upstream of a forked repo by @​dsame #​913
  • abort the build on the error by @​dsame in #​935

Breaking Changes

  • In this release we prevent scenarios when the build is not interrupted on some exceptions, which led to successful builds when they are supposed to fail

Example

name: 'Remove labels when the issue or PR becomes stale'
on:
  schedule:
    - cron: '30 1 * * *'

permissions:
    pull-requests: write

jobs:
  stale:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/stale@v8
        with:
          labels-to-remove-when-stale: 'label1,label2'

v8

Compare Source

v7.0.0

Compare Source

⚠️ This version contains breaking changes ⚠️

What's Changed

Breaking Changes

  • In this release we prevent this action from managing the stale label on items included in exempt-issue-labels and exempt-pr-labels
  • We decided that this is outside of the scope of this action, and to be left up to the maintainer

New Contributors

Full Changelog: actions/stale@v6...v7.0.0

v7

Compare Source

v6.0.1

Compare Source

Update @​actions/core to 1.10.0 #​839

Full Changelog: actions/stale@v6.0.0...v6.0.1

v6.0.0

Compare Source

⚠️ Breaking change ⚠️

Issues/PRs default close-issue-reason is now not_planned(#​789)

v6

Compare Source

v5.2.1: Update @​actions/core for v5

Compare Source

In scope of this release we updated actions/core to 1.10.0 for v5: #​958

v5.2.0

Compare Source

Features:
New option include-only-assigned enables users to process only issues/PRs that are already assigned. If there is no assignees and this option is set, issue will not be processed per: issue/596

Fixes:
Fix date comparison edge case PR/816

Dependency Updates:
PR/812

v5.1.1: Fix issue when days-before-close is more than days-before-stale

Compare Source

fixes a bug introduced in #​717

fixed in #​775

v5.1.1: Fix issue when days-before-close is more than days-before-stale

Compare Source

fixes a bug introduced in #​717

fixed in #​775

v5.1.0

Compare Source

[5.1.0]

Don't process stale issues right after they're marked stale
Add close-issue-reason option #​764#​772
Various dependabot/dependency updates

v5.0.0

Compare Source

Features

v5

Compare Source

v4.1.1

Compare Source

In scope of this release we updated actions/core to 1.10.0 for v4 and fixed issues operation count.

v4.1.0

Compare Source

Features

v4.0.0

Compare Source

⚠️ This version contains breaking changes ⚠️

Features
Bug Fixes
  • dry-run: forbid mutations in dry-run (#​500) (f1017f3), closes #​499
  • logs: coloured logs (#​465) (5fbbfba)
  • operations: fail fast the current batch to respect the operations limit (#​474) (5f6f311), closes #​466
  • label comparison: make label comparison case insensitive #​517, closes #​516
  • filtering comments by actor could have strange behavior: "stale" comments are now detected based on if the message is the stale message not who made the comment(#​519), fixes #​441, #​509, #​518
Breaking Changes
  • The options skip-stale-issue-message and skip-stale-pr-message were removed. Instead, setting the options stale-issue-message and stale-pr-message will be enough to let the stale workflow add a comment. If the options are unset, a comment will not be added which was the equivalent of setting skip-stale-issue-message to true.
  • The operations-per-run option will be more effective. After migrating, you could face a failed-fast process workflow if you let the default value (30) or set it to a small number. In that case, you will see a warning at the end of the logs (if enabled) indicating that the workflow was stopped sooner to avoid consuming too much API calls. In most cases, you can just increase this limit to make sure to process everything in a single run.

v4

Compare Source


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate
renovate Bot force-pushed the renovate/actions-stale-10.x branch 2 times, most recently from 7e9c164 to 06a98bc Compare May 2, 2026 22:59
@renovate
renovate Bot force-pushed the renovate/actions-stale-10.x branch from 06a98bc to d4d567c Compare May 10, 2026 05:21
@renovate
renovate Bot force-pushed the renovate/actions-stale-10.x branch from d4d567c to 96ed65b Compare July 9, 2026 12:36
@renovate renovate Bot changed the title Update actions/stale action to v10 Update actions/stale action to v10 (main) Jul 9, 2026
@netlify

netlify Bot commented Jul 9, 2026

Copy link
Copy Markdown

Deploy Preview for bfs-web-component ready!

Name Link
🔨 Latest commit d5bced0
🔍 Latest deploy log https://app.netlify.com/projects/bfs-web-component/deploys/6a675527ad3e4f0007097271
😎 Deploy Preview https://deploy-preview-64--bfs-web-component.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.
🤖 Make changes Run an agent on this branch

To edit notification comments on pull requests, go to your Netlify project configuration.

@renovate renovate Bot changed the title Update actions/stale action to v10 (main) Update actions/stale action to v10 (main) - autoclosed Jul 9, 2026
@renovate renovate Bot closed this Jul 9, 2026
@renovate
renovate Bot deleted the renovate/actions-stale-10.x branch July 9, 2026 12:38
@renovate renovate Bot changed the title Update actions/stale action to v10 (main) - autoclosed Update actions/stale action to v10 Jul 12, 2026
@renovate renovate Bot reopened this Jul 12, 2026
@renovate
renovate Bot force-pushed the renovate/actions-stale-10.x branch 5 times, most recently from 8b85afb to 47eeabb Compare July 17, 2026 12:48
@renovate
renovate Bot force-pushed the renovate/actions-stale-10.x branch 2 times, most recently from db2b031 to 1855e0a Compare July 26, 2026 22:06
@renovate
renovate Bot force-pushed the renovate/actions-stale-10.x branch from 1855e0a to d5bced0 Compare July 27, 2026 12:55
@renovate renovate Bot changed the title Update actions/stale action to v10 chore(deps): update actions/stale action to v10 Jul 27, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants