Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update cache actions from v3 to v4 #1442

Merged
Merged
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
6 changes: 3 additions & 3 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:
# ====================== CONTRACTS v2 ====================== #
- name: Cache contracts v2
id: cache-contracts_v2
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: starknet_py/tests/e2e/mock/contracts_v2/target
key: ${{ runner.os }}-contracts-${{ hashFiles('starknet_py/tests/e2e/mock/contracts_v2') }}
Expand All @@ -112,7 +112,7 @@ jobs:

- name: Cache contracts v1
id: cache-contracts_v1
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: starknet_py/tests/e2e/mock/contracts_v1/target
key: ${{ runner.os }}-contracts-${{ hashFiles('starknet_py/tests/e2e/mock/contracts_v1') }}
Expand All @@ -126,7 +126,7 @@ jobs:

- name: Cache contracts v0
id: cache-contracts
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: starknet_py/tests/e2e/mock/contracts_compiled
key: ${{ runner.os }}-contracts-${{ hashFiles('starknet_py/tests/e2e/mock/contracts', 'poetry.lock') }}-${{ env.CAIRO_LANG_VERSION }}
Expand Down
Loading