From 6de56b153a18d3498866db91af18a4574cc00a82 Mon Sep 17 00:00:00 2001 From: David Crespo Date: Fri, 23 Feb 2024 14:24:30 -0600 Subject: [PATCH] Bump actions/cache to v4 (#1975) bump actions/cache to v4 --- .github/workflows/lintBuildTest.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/lintBuildTest.yml b/.github/workflows/lintBuildTest.yml index 7c080fb0c..4c6b55c25 100644 --- a/.github/workflows/lintBuildTest.yml +++ b/.github/workflows/lintBuildTest.yml @@ -16,7 +16,7 @@ jobs: node-version: 20 cache: 'npm' - name: Cache node_modules - uses: actions/cache@v3 + uses: actions/cache@v4 id: cache-node-modules with: path: node_modules @@ -35,7 +35,7 @@ jobs: node-version: 20 cache: 'npm' - name: Get node_modules from cache - uses: actions/cache@v3 + uses: actions/cache@v4 id: cache-node-modules with: path: node_modules @@ -64,7 +64,7 @@ jobs: node-version: 20 cache: 'npm' - name: Get node_modules from cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: node_modules key: modules-${{ hashFiles('package-lock.json') }} @@ -74,7 +74,7 @@ jobs: echo "PLAYWRIGHT_VERSION=$PLAYWRIGHT_VERSION" >> $GITHUB_ENV # Cache browser binaries, cache key is based on Playwright version and OS - name: Cache Playwright browser binaries - uses: actions/cache@v3 + uses: actions/cache@v4 id: playwright-cache with: path: '~/.cache/ms-playwright'