From f32bdf04973bc1e04ad29dc33d2aabab8f7b29bb Mon Sep 17 00:00:00 2001 From: Robin Jones Date: Tue, 16 Jan 2024 00:24:58 +0000 Subject: [PATCH] Update check-dist.yml (#250) --- .github/workflows/check-dist.yml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/.github/workflows/check-dist.yml b/.github/workflows/check-dist.yml index b6ed405..0d3b9bd 100644 --- a/.github/workflows/check-dist.yml +++ b/.github/workflows/check-dist.yml @@ -15,20 +15,18 @@ on: paths-ignore: - '**.md' workflow_dispatch: - paths-ignore: - - '**.md' jobs: check-dist: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - - name: Set Node.js 16.x - uses: actions/setup-node@v3 + - name: Set Node.js version 18 + uses: actions/setup-node@v4 with: - node-version: 16.x # if possible should use `lts/*` + node-version: 18 # if possible should use `lts/*` cache: 'npm' - name: Install dependencies @@ -52,7 +50,7 @@ jobs: needs: check-dist steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: ref: 'main'