From 4e79b8eeacc61e5892746d7e721c6b557793781e Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 17 Jan 2024 16:25:57 +0000 Subject: [PATCH] chore(deps): update actions/cache action to v4 --- .github/workflows/test.yml | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0bcc713..d30a9d5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,7 +11,7 @@ jobs: uses: actions/checkout@master - name: cache package-lock.json - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: package-temp-dir key: lock-${{ github.sha }} @@ -26,7 +26,7 @@ jobs: - name: cache node_modules id: node_modules_cache_id - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: node_modules key: node_modules-${{ hashFiles('**/package-temp-dir/package-lock.json') }} @@ -43,13 +43,13 @@ jobs: uses: actions/checkout@master - name: restore cache from package-lock.json - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: package-temp-dir key: lock-${{ github.sha }} - name: restore cache from node_modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: node_modules key: node_modules-${{ hashFiles('**/package-temp-dir/package-lock.json') }} @@ -70,25 +70,25 @@ jobs: uses: actions/checkout@master - name: restore cache from package-lock.json - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: package-temp-dir key: lock-${{ github.sha }} - name: restore cache from node_modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: node_modules key: node_modules-${{ hashFiles('**/package-temp-dir/package-lock.json') }} - name: cache lib - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: lib key: lib-${{ github.sha }} - name: cache es - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: es key: es-${{ github.sha }} @@ -106,13 +106,13 @@ jobs: uses: actions/checkout@master - name: restore cache from package-lock.json - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: package-temp-dir key: lock-${{ github.sha }} - name: restore cache from node_modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: node_modules key: node_modules-${{ hashFiles('**/package-temp-dir/package-lock.json') }} @@ -130,13 +130,13 @@ jobs: uses: actions/checkout@master - name: restore cache from package-lock.json - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: package-temp-dir key: lock-${{ github.sha }} - name: restore cache from node_modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: node_modules key: node_modules-${{ hashFiles('**/package-temp-dir/package-lock.json') }} @@ -159,19 +159,19 @@ jobs: uses: actions/checkout@master - name: restore cache from package-lock.json - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: package-temp-dir key: lock-${{ github.sha }} - name: restore cache from node_modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: node_modules key: node_modules-${{ hashFiles('**/package-temp-dir/package-lock.json') }} - name: restore cache from lib - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: lib key: lib-${{ github.sha }} @@ -189,19 +189,19 @@ jobs: uses: actions/checkout@master - name: restore cache from package-lock.json - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: package-temp-dir key: lock-${{ github.sha }} - name: restore cache from node_modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: node_modules key: node_modules-${{ hashFiles('**/package-temp-dir/package-lock.json') }} - name: restore cache from es - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: es key: es-${{ github.sha }}