From 96c21d2724a774ba2b0edc8c203c708b373b143f Mon Sep 17 00:00:00 2001 From: Kazuaki Matsuo Date: Tue, 16 Jan 2024 17:36:43 -0800 Subject: [PATCH] chore: use latest lts for the publishment --- .github/workflows/publish.js.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/publish.js.yml b/.github/workflows/publish.js.yml index 6fcf0ce..135d6a0 100644 --- a/.github/workflows/publish.js.yml +++ b/.github/workflows/publish.js.yml @@ -9,11 +9,12 @@ jobs: build: runs-on: macos-latest steps: - - uses: actions/checkout@v2 - - name: Use Node.js 18.x - uses: actions/setup-node@v1 + - uses: actions/checkout@v3 + - name: Use Node.js LTS + uses: actions/setup-node@v3 with: - node-version: 18.x + node-version: lts/* + check-latest: true - run: npm install --no-package-lock name: Install dev dependencies - run: npm run build