From b515108b2b5f099e84261484fde437cc86442398 Mon Sep 17 00:00:00 2001 From: Kevin Chappell Date: Tue, 19 Mar 2024 12:01:43 -0700 Subject: [PATCH] chore: update publish workflow --- .github/workflows/publish.yaml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 591fdb8..70c9ca9 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -8,13 +8,11 @@ on: jobs: build: runs-on: ubuntu-latest - strategy: - matrix: - node: [12] steps: - - uses: actions/checkout@v2 - - name: Set up Nodejs ${{ matrix.node }} - uses: actions/setup-node@v1 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 20 - name: Install dependencies env: CI: true