From 205705c1c3d90c6541b12b0c489d969c25ae7486 Mon Sep 17 00:00:00 2001 From: Joey Guerra Date: Thu, 29 Feb 2024 17:14:12 -0600 Subject: [PATCH] chore: use node 20. getting github actions warnign about v16 --- .github/workflows/ci-build.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index 2f2aa48d..1dd2413b 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -15,7 +15,8 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: ['lts/*'] + node-version: + - '20.x' steps: - name: Checkout uses: actions/checkout@v3 @@ -38,7 +39,8 @@ jobs: needs: build strategy: matrix: - node-version: ['lts/*'] + node-version: + - '20.x' steps: - name: Checkout uses: actions/checkout@v3 @@ -57,7 +59,8 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: ['lts/*'] + node-version: + - '20.x' if: github.ref == 'refs/heads/main' && ${{ success() }} steps: - name: Checkout