From e82d577cdc34e19a65d919975b7ba35f2b9bc915 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Zasso?= Date: Mon, 4 Mar 2024 09:30:12 +0100 Subject: [PATCH] chore: update deprecated Node.js 16 actions (#280) Update actions/setup-node and actions/cache to v4, which use Node.js 20. --- .github/workflows/update-canary.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/update-canary.yml b/.github/workflows/update-canary.yml index cf64e7b9d3d..56268e3ba41 100644 --- a/.github/workflows/update-canary.yml +++ b/.github/workflows/update-canary.yml @@ -18,7 +18,7 @@ jobs: token: ${{ secrets.CANARY_UPDATE }} - name: Install Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: lts/* @@ -26,7 +26,7 @@ jobs: run: npm install -g @node-core/utils - name: Cache V8 clone - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: v8 key: v8-clone