From bdbc2d7e8dff04de7a46ae3f18e04de37baede7a Mon Sep 17 00:00:00 2001 From: thomasRalee Date: Tue, 18 Jun 2024 16:20:54 +0800 Subject: [PATCH] chore: update gh stable workflow --- .github/workflows/stable.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/stable.yaml b/.github/workflows/stable.yaml index 2c49f5461..0e859c7bb 100644 --- a/.github/workflows/stable.yaml +++ b/.github/workflows/stable.yaml @@ -10,16 +10,18 @@ jobs: if: true runs-on: ubuntu-latest + permissions: write-all + steps: - name: 'Checkout' # Download code from the repository uses: actions/checkout@v2 # Public action with: fetch-depth: 0 # Checkout all branches and tags - - name: 'Use NodeJS 16' # Setup node using version 14 + - name: 'Use NodeJS 18' # Setup node using version 14 uses: actions/setup-node@v2 # Public action with: - node-version: '16.18.1' + node-version: '18.17.0' - name: 'Setup lerna@6.6.1' run: yarn global add lerna@6.6.1 --ignore-engines