From 4d12fc23cf84a2f30529ef3417059f14ef5ed5cf Mon Sep 17 00:00:00 2001 From: Orgad Shaneh Date: Tue, 30 Apr 2024 08:24:01 +0300 Subject: [PATCH] ci: update actions/setup-node to latest and replace Node 21 with 22. --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 288d250..f959a71 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,12 +12,12 @@ jobs: strategy: matrix: - node-version: [16.x, 18.x, 20.x, 21.x] + node-version: [16, 18, 20, 22] steps: - uses: actions/checkout@v2 - 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 install