Skip to content

Commit

Permalink
python@v5
Browse files Browse the repository at this point in the history
  • Loading branch information
Enric Grau committed Apr 23, 2024
1 parent 1f41b54 commit d6f00d8
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ jobs:
- name: CHECKOUT CODE
uses: actions/checkout@v4
- name: SETUP PYTHON
uses: actions/[email protected]
# uses: actions/[email protected]
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.config.py }}
- name: Install dependencies
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ jobs:
fetch-depth: ‘2’

- name: Setup Python
uses: actions/[email protected]
# uses: actions/[email protected]
uses: actions/setup-python@v5
with:
python-version: 3.9

Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/[email protected]
# - uses: actions/[email protected]
- uses: actions/setup-python@v5
with:
python-version: 3.8
- name: Install dependencies
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/[email protected]
# uses: actions/[email protected]
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install dependencies
Expand Down

0 comments on commit d6f00d8

Please sign in to comment.