From 4356142fef1d3f8da37153f981a9e236f907fdbc Mon Sep 17 00:00:00 2001 From: Dennis Paler Date: Fri, 30 Jan 2026 11:10:03 +0800 Subject: [PATCH] fix(ci): fix setup action shell and upgrade release to node 22 --- .github/actions/setup/action.yml | 1 + .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index 35d0bf8..1f501b6 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -6,6 +6,7 @@ runs: steps: - name: Enable Corepack run: corepack enable + shell: bash - name: Setup Node.js uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 262ab79..24a86c5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -23,7 +23,7 @@ jobs: - name: Setup Node uses: actions/setup-node@v4 with: - node-version: 18 + node-version: 22 registry-url: 'https://registry.npmjs.org' - name: Install dependencies