Skip to content

Commit

Permalink
Update actions/cache to 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Piotr Stachyra committed Mar 22, 2022
1 parent 5fb7bc1 commit 5e0593b
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/e2e-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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 }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/e2e-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- name: 💾 Cache node db
id: cache
uses: actions/[email protected].4
uses: actions/[email protected].7
with:
path: test/e2e/state/node_db/${{ env.NETWORK }}
key: node-db-${{ runner.os }}-${{ env.NETWORK }}-${{ steps.date-time.outputs.value }}
Expand All @@ -50,7 +50,7 @@ jobs:
- name: 💾 Cache wallet db
id: cache-wallet
uses: actions/[email protected].4
uses: actions/[email protected].7
with:
path: test/e2e/state/wallet_db/${{ env.NETWORK }}
key: wallet-db-${{ runner.os }}-${{ env.NETWORK }}-${{ steps.date-time.outputs.value }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/e2e-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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 }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/e2e-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,17 +47,17 @@ jobs:
- name: 💾 Cache node db
id: cache
uses: actions/[email protected].4
uses: actions/[email protected].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/[email protected].4
uses: actions/[email protected].7
with:
path: test/e2e/state/wallet_db/${{ env.NETWORK }}
key: wallet-db-${{ runner.os }}-${{ env.NETWORK }}-${{ steps.date-time.outputs.value }}
Expand Down

0 comments on commit 5e0593b

Please sign in to comment.