From edb2261916fcb7839ee9a52ea5e7509f5c25c977 Mon Sep 17 00:00:00 2001 From: Alex Fang Date: Mon, 15 Jul 2024 19:16:29 +0800 Subject: [PATCH] chore: update GitHub Actions --- .github/workflows/semantic-release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/semantic-release.yml b/.github/workflows/semantic-release.yml index 8bcbf13..be65db1 100644 --- a/.github/workflows/semantic-release.yml +++ b/.github/workflows/semantic-release.yml @@ -11,13 +11,13 @@ jobs: steps: - name: Checkout uses: actions/checkout@v2 - - name: Use Node.js 14 + - name: Use Node.js 20 uses: actions/setup-node@v2 with: - node-version: '14' + node-version: '20' - name: Install Dependencies - run: yarn install + run: pnpm install - name: Semantic Release env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: yarn release + run: pnpm run release