From b095a3b435ea0dc0eff60031c9b7a27bcc875aeb Mon Sep 17 00:00:00 2001 From: Nico Rehwaldt Date: Thu, 7 Mar 2024 07:50:10 +0100 Subject: [PATCH] chore: update to actions/setup-node@v4 chore: use built-in cache --- .github/workflows/CI.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 78424c6..8a2a20a 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -8,9 +8,10 @@ jobs: - name: Checkout uses: actions/checkout@v4 - name: Use Node.js - uses: actions/setup-node@v2 + uses: actions/setup-node@v4 with: node-version: 20 + cache: 'npm' - name: Install dependencies run: npm ci - name: Build