From 2b58f8e27bfa92aed08d4384319dad47d9e74239 Mon Sep 17 00:00:00 2001 From: Aaron Chong Date: Thu, 4 Jul 2024 14:06:15 +0800 Subject: [PATCH] Workflow Signed-off-by: Aaron Chong --- .github/actions/bootstrap/action.yml | 18 +++++------------- 1 file changed, 5 insertions(+), 13 deletions(-) diff --git a/.github/actions/bootstrap/action.yml b/.github/actions/bootstrap/action.yml index b8d0a1ef2..dd0404be3 100644 --- a/.github/actions/bootstrap/action.yml +++ b/.github/actions/bootstrap/action.yml @@ -11,21 +11,13 @@ inputs: runs: using: composite steps: - - uses: pnpm/action-setup@v2.2.2 + - uses: pnpm/action-setup@v4.0.0 with: version: '8.6.12' - # - uses: actions/setup-node@v2 - # with: - # node-version: '16' - # cache: 'pnpm' - # - name: Install pnpm and setup node manually - # shell: bash - # run: | - # curl -fsSL https://raw.githubusercontent.com/pnpm/get.pnpm.io/main/install.sh | env PNPM_VERSION=8.6.12 bash - && \ - # pnpm env use --global 16 - - name: Setup node - shell: bash - run: pnpm env use --global 16 + - uses: actions/setup-node@v4 + with: + node-version: '16' + cache: 'pnpm' - name: Install pipenv run: pip3 install pipenv shell: bash