diff --git a/.github/workflows/e2e-docker.yml b/.github/workflows/e2e-docker.yml index 27be0002088..26c72cc6f36 100644 --- a/.github/workflows/e2e-docker.yml +++ b/.github/workflows/e2e-docker.yml @@ -62,7 +62,7 @@ jobs: - name: 💾 Cache node db id: cache - uses: actions/cache@v2.1.4 + uses: actions/cache@v3.0.0 with: path: test/e2e/state/node_db/${{ env.NETWORK }} key: node-db-docker-${{ env.NETWORK }}-${{ steps.date-time.outputs.value }} @@ -72,7 +72,7 @@ jobs: - name: 💾 Cache wallet db id: cache-wallet - uses: actions/cache@v2.1.4 + uses: actions/cache@v3.0.0 with: path: test/e2e/state/wallet_db/${{ env.NETWORK }} key: wallet-db-${{ runner.os }}-${{ env.NETWORK }}-${{ steps.date-time.outputs.value }} diff --git a/.github/workflows/e2e-linux.yml b/.github/workflows/e2e-linux.yml index b31b6f5d5ab..6fa552e8ff2 100644 --- a/.github/workflows/e2e-linux.yml +++ b/.github/workflows/e2e-linux.yml @@ -41,7 +41,7 @@ jobs: - name: 💾 Cache node db id: cache - uses: actions/cache@v2.1.4 + uses: actions/cache@v2.1.7 with: path: test/e2e/state/node_db/${{ env.NETWORK }} key: node-db-${{ runner.os }}-${{ env.NETWORK }}-${{ steps.date-time.outputs.value }} @@ -50,7 +50,7 @@ jobs: - name: 💾 Cache wallet db id: cache-wallet - uses: actions/cache@v2.1.4 + uses: actions/cache@v2.1.7 with: path: test/e2e/state/wallet_db/${{ env.NETWORK }} key: wallet-db-${{ runner.os }}-${{ env.NETWORK }}-${{ steps.date-time.outputs.value }} diff --git a/.github/workflows/e2e-macos.yml b/.github/workflows/e2e-macos.yml index a7567b65cbd..62638b1641a 100644 --- a/.github/workflows/e2e-macos.yml +++ b/.github/workflows/e2e-macos.yml @@ -44,7 +44,7 @@ jobs: - name: 💾 Cache node db id: cache - uses: actions/cache@v2.1.4 + uses: actions/cache@v3.0.0 with: path: test/e2e/state/node_db/${{ env.NETWORK }} key: node-db-${{ runner.os }}-${{ env.NETWORK }}-${{ steps.date-time.outputs.value }} @@ -54,7 +54,7 @@ jobs: - name: 💾 Cache wallet db id: cache-wallet - uses: actions/cache@v2.1.4 + uses: actions/cache@v3.0.0 with: path: test/e2e/state/wallet_db/${{ env.NETWORK }} key: wallet-db-${{ runner.os }}-${{ env.NETWORK }}-${{ steps.date-time.outputs.value }} diff --git a/.github/workflows/e2e-windows.yml b/.github/workflows/e2e-windows.yml index 2bd8dae2542..2c998759384 100644 --- a/.github/workflows/e2e-windows.yml +++ b/.github/workflows/e2e-windows.yml @@ -47,17 +47,17 @@ jobs: - name: 💾 Cache node db id: cache - uses: actions/cache@v2.1.4 + uses: actions/cache@v2.1.7 with: path: test/e2e/state/node_db/${{ env.NETWORK }} key: node-db-${{ runner.os }}-${{ env.NETWORK }}-${{ steps.date-time.outputs.value }} restore-keys: | - node-db-Linux-${{ env.NETWORK }}- node-db-${{ runner.os }}-${{ env.NETWORK }}- + node-db-Linux-${{ env.NETWORK }}- - name: 💾 Cache wallet db id: cache-wallet - uses: actions/cache@v2.1.4 + uses: actions/cache@v2.1.7 with: path: test/e2e/state/wallet_db/${{ env.NETWORK }} key: wallet-db-${{ runner.os }}-${{ env.NETWORK }}-${{ steps.date-time.outputs.value }}