Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/actions/init-akash/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ runs:
# cache .deb files to reduce the network load and accelerate the execution time
- name: Restore Akash client deb from cache
id: cache-deb-restore
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: |
~/cache
Expand All @@ -69,7 +69,7 @@ runs:

- name: Save Akash client deb to cache
id: cache-deb-save
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: |
~/cache
Expand Down Expand Up @@ -106,7 +106,7 @@ runs:

- name: Restore encrypted wallet from cache
id: cache-wallet-restore
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: |
${{ env.AKASH_HOME }}/keyring-file
Expand Down Expand Up @@ -150,15 +150,15 @@ runs:
- name: Save encrypted wallet to cache
if: steps.akash-keyring-backend.outputs.is != 'test'
id: cache-wallet-save
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: |
${{ env.AKASH_HOME }}/keyring-file
key: ${{ steps.cache-wallet-restore.outputs.cache-primary-key }}

- name: Restore client certificates from cache
id: cache-client-certs-restore
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: |
${{ env.AKASH_HOME }}/*.pem
Expand Down Expand Up @@ -279,7 +279,7 @@ runs:
- name: Save client certs to cache
# TODO(security): encrypt akash client certificates before storing them in the cache
id: cache-client-certs-save
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: |
${{ env.AKASH_HOME }}/*.pem
Expand Down