From 83acde6808f22ed20f3367a0b289f54be92cfe48 Mon Sep 17 00:00:00 2001 From: Piotr Galar Date: Sun, 26 Jan 2025 11:02:28 +0100 Subject: [PATCH] chore: update actions/cache to v4 The v2 version of the action is getting deprecated soon. --- .github/workflows/validation.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/validation.yml b/.github/workflows/validation.yml index 10c458e..b24f36e 100644 --- a/.github/workflows/validation.yml +++ b/.github/workflows/validation.yml @@ -30,7 +30,7 @@ jobs: - name: Cache npm dependencies if: steps.check_files.outputs.count != '0' - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}