Skip to content
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
18 changes: 9 additions & 9 deletions .github/workflows/base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
uses: actions/checkout@v4.1.1

- name: Install python 3.9
uses: actions/setup-python@v5.0.0
uses: actions/setup-python@v5.1.0
with:
python-version: 3.9
architecture: x64
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
uses: actions/checkout@v4.1.1

- name: Install python ${{ matrix.nox_session.python }} for tests
uses: MatteoH2O1999/setup-python@v3.0.0 # actions/setup-python@v5.0.0
uses: MatteoH2O1999/setup-python@v3.2.0 # actions/setup-python@v5.1.0
id: set-py
with:
python-version: ${{ matrix.nox_session.python }}
Expand All @@ -69,7 +69,7 @@ jobs:
cache-build: true

- name: Install python 3.12 for nox
uses: actions/setup-python@v5.0.0
uses: actions/setup-python@v5.1.0
with:
python-version: 3.12
architecture: x64
Expand All @@ -88,7 +88,7 @@ jobs:
# Share ./docs/reports so that they can be deployed with doc in next job
- name: Share reports with other jobs
# if: matrix.nox_session == '...': not needed, if empty won't be shared
uses: actions/upload-artifact@v4.3.0
uses: actions/upload-artifact@v4.3.1
with:
name: reports_dir
path: ./docs/reports
Expand All @@ -101,7 +101,7 @@ jobs:
uses: actions/checkout@v4.1.1

- name: Install python 3.9 for nox
uses: actions/setup-python@v5.0.0
uses: actions/setup-python@v5.1.0
with:
python-version: 3.9
architecture: x64
Expand All @@ -128,14 +128,14 @@ jobs:
fetch-depth: 0 # so that gh-deploy works

- name: Install python 3.9 for nox
uses: actions/setup-python@v5.0.0
uses: actions/setup-python@v5.1.0
with:
python-version: 3.9
architecture: x64

# 1) retrieve the reports generated previously
- name: Retrieve reports
uses: actions/download-artifact@v4.1.1
uses: actions/download-artifact@v4.1.4
with:
name: reports_dir
path: ./docs/reports
Expand Down Expand Up @@ -167,7 +167,7 @@ jobs:
EOF
- name: \[not on TAG\] Publish coverage report
if: github.event_name == 'push' && startsWith(github.ref, 'refs/heads')
uses: codecov/codecov-action@v4.0.1
uses: codecov/codecov-action@v4.1.1
with:
files: ./docs/reports/coverage/coverage.xml

Expand All @@ -181,7 +181,7 @@ jobs:
# 8) Publish the wheel on PyPi
- name: \[TAG only\] Deploy on PyPi
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@v1.8.11
uses: pypa/gh-action-pypi-publish@v1.8.14
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
Expand Down