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

ghactions-upgraded #1526

Open
wants to merge 9 commits into
base: development
Choose a base branch
from
36 changes: 18 additions & 18 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
pip install poetry

- name: Set up Python 3.12
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: 'poetry'
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:

- uses: actions/checkout@v4
- uses: asdf-vm/actions/setup@v3
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: 'pip'
Expand All @@ -86,7 +86,7 @@ jobs:
pip install poetry

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
Expand Down Expand Up @@ -153,7 +153,7 @@ jobs:
name: contract-artifacts
path: starknet_py/tests/e2e/mock/

- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: 'pip'
Expand All @@ -166,7 +166,7 @@ jobs:
pip install poetry

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
Expand Down Expand Up @@ -239,7 +239,7 @@ jobs:
poetry run coverage xml

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v5

# ---------------------------------------------------------- #
# ..................RUN-TESTS-ON-NETWORKS................... #
Expand All @@ -264,7 +264,7 @@ jobs:
name: contract-artifacts
path: starknet_py/tests/e2e/mock/

- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: 'pip'
Expand All @@ -277,7 +277,7 @@ jobs:
pip install poetry

- name: Set up Python 3.12
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: 'poetry'
Expand Down Expand Up @@ -306,7 +306,7 @@ jobs:
poetry run coverage xml

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v5

# ---------------------------------------------------------- #
# ....................RUN-TESTS-WINDOWS..................... #
Expand Down Expand Up @@ -335,7 +335,7 @@ jobs:
name: contract-artifacts
path: starknet_py/tests/e2e/mock/

- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: 'pip'
Expand Down Expand Up @@ -363,7 +363,7 @@ jobs:
pip install poetry

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
Expand All @@ -388,7 +388,7 @@ jobs:
poetry run coverage xml

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v5

# ---------------------------------------------------------- #
# .....................RUN-DOCS-TESTS....................... #
Expand All @@ -411,7 +411,7 @@ jobs:
name: contract-artifacts
path: starknet_py/tests/e2e/mock/

- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: 'pip'
Expand All @@ -424,7 +424,7 @@ jobs:
pip install poetry

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
Expand All @@ -450,7 +450,7 @@ jobs:
poetry run coverage xml

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v5

# ---------------------------------------------------------- #
# .................RUN-DOCS-TESTS-WINDOWS................... #
Expand All @@ -477,7 +477,7 @@ jobs:
name: contract-artifacts
path: starknet_py/tests/e2e/mock/

- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: 'pip'
Expand All @@ -490,7 +490,7 @@ jobs:
pip install poetry

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
Expand Down Expand Up @@ -527,4 +527,4 @@ jobs:
poetry run coverage xml

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v5
2 changes: 1 addition & 1 deletion .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: '3.9'

Expand Down
Loading