From 3f53c4a68f18973892cf5484bb9b4250d758a95e Mon Sep 17 00:00:00 2001 From: Eduardo Pinho Date: Mon, 24 Jun 2024 16:19:09 +0100 Subject: [PATCH] Update node workflow to no longer use Node.js 16 --- .github/workflows/node.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/node.yml b/.github/workflows/node.yml index 2a604629f..97c1a0ebd 100644 --- a/.github/workflows/node.yml +++ b/.github/workflows/node.yml @@ -26,9 +26,9 @@ jobs: # - latest stable steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} cache: 'npm'