From d613c20ef37c7314290cd5afee2cce4bac6bd141 Mon Sep 17 00:00:00 2001 From: Goooler Date: Thu, 21 Aug 2025 14:56:45 +0800 Subject: [PATCH] Update action runtime to node 24 https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/ --- .github/workflows/ci.yml | 2 +- action.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f1d90c7402..b46815d231 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: - uses: actions/checkout@v5 - uses: actions/setup-node@v5 with: - node-version: 20.x + node-version: 24.x cache: npm - run: npm ci - run: npm run build diff --git a/action.yml b/action.yml index 9d28570cb5..e09c1f3ba9 100644 --- a/action.yml +++ b/action.yml @@ -94,7 +94,7 @@ outputs: pull-request-branch: description: 'The pull request branch name' runs: - using: 'node20' + using: 'node24' main: 'dist/index.js' branding: icon: 'git-pull-request'