From 0498b09c6cde5e02e5831e711c280b927f7ec66d Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Wed, 16 Oct 2024 17:30:34 -0700 Subject: [PATCH] github: Attempt upgrading CI tooling. --- .github/workflows/node.js.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 4c86190..7826686 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -12,12 +12,12 @@ jobs: strategy: matrix: - node-version: [10.x, 12.x, 14.x] + node-version: [16, 18, 20, 22] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - run: npm ci