From 02db3e05bcadc13bea0563777af4eb75adacd4cd Mon Sep 17 00:00:00 2001 From: vchikalkin Date: Sat, 11 Jan 2025 12:32:49 +0300 Subject: [PATCH] fix(workflow): [semantic-release]: node version >=20.8.1 is required. Found v18.20.5. --- .github/workflows/release.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c359c18..954ef0c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,12 +11,10 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Node.js - uses: actions/setup-node@v3 - with: - node-version: '18' + uses: actions/setup-node@v4 - name: Install pnpm run: npm install -g pnpm