From f2e61934cdf989fc6da08d95e74cacc959251fc3 Mon Sep 17 00:00:00 2001 From: soyuka Date: Fri, 29 May 2026 15:43:51 +0200 Subject: [PATCH] ci(stale): bump checkout to v6 and github-script to v8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Address GitHub Actions Node 20 deprecation warning. Node 20 will be forced to Node 24 by default starting June 2nd, 2026 and removed from runners on September 16th, 2026. The companion `actions/setup-node@v4` → `@v6` bump is handled on branch `4.3` and will reach `main` through the usual merge-up. --- .github/workflows/stale.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index c30b7c664b..9375d214f4 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -25,8 +25,8 @@ jobs: DRY_RUN: ${{ github.event_name == 'workflow_dispatch' && inputs.dry_run || 'false' }} MAX_ACTIONS_PER_RUN: ${{ github.event_name == 'workflow_dispatch' && inputs.max_actions || '25' }} steps: - - uses: actions/checkout@v4 - - uses: actions/github-script@v7 + - uses: actions/checkout@v6 + - uses: actions/github-script@v8 with: script: | const script = require('./.github/scripts/stale.js');