From 23112c13a40fd81623eafbadbb16e5d576199238 Mon Sep 17 00:00:00 2001 From: RaduBerinde Date: Tue, 12 Sep 2023 06:32:02 -0700 Subject: [PATCH] workflows: stale.yml: update action version The stale bot closes issues as "completed" instead of "not planned". More recent versions have added a configuration setting for this, and it defaults to "not planned". This commit updates the action to the latest version. Epic: none Release note: None --- .github/workflows/stale.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index aa54bc2fc040..05917aa1bc9f 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -12,7 +12,7 @@ jobs: issues: write pull-requests: write steps: - - uses: actions/stale@v3 + - uses: actions/stale@v8 with: operations-per-run: 1000 repo-token: ${{ secrets.GITHUB_TOKEN }}