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 }}