diff --git a/.github/workflows/test-macos.yml b/.github/workflows/test-macos.yml index 00a2ef83..63bd39d1 100644 --- a/.github/workflows/test-macos.yml +++ b/.github/workflows/test-macos.yml @@ -51,10 +51,10 @@ jobs: run: | git clone --depth 1 --branch master https://github.com/jesec/flood.git . - - name: Use Node.js 15 - uses: actions/setup-node@v1 + - name: Use Node.js LTS + uses: actions/setup-node@v3 with: - node-version: 15 + node-version: lts/* - run: npm ci --no-optional - run: npm run build diff --git a/.github/workflows/test-ubuntu.yml b/.github/workflows/test-ubuntu.yml index 6b0b175c..9c2936e4 100644 --- a/.github/workflows/test-ubuntu.yml +++ b/.github/workflows/test-ubuntu.yml @@ -116,10 +116,10 @@ jobs: run: | git clone --depth 1 --branch master https://github.com/jesec/flood.git . - - name: Use Node.js 15 - uses: actions/setup-node@v1 + - name: Use Node.js LTS + uses: actions/setup-node@v3 with: - node-version: 15 + node-version: lts/* - run: npm ci --no-optional - run: npm run build