-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3a8a5bc
commit 43db482
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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/[email protected].0 | ||
uses: actions/[email protected].1 | ||
with: | ||
name: reports_dir | ||
path: ./docs/reports | ||
|
@@ -135,7 +135,7 @@ jobs: | |
|
||
# 1) retrieve the reports generated previously | ||
- name: Retrieve reports | ||
uses: actions/[email protected].1 | ||
uses: actions/[email protected].3 | ||
with: | ||
name: reports_dir | ||
path: ./docs/reports | ||
|
@@ -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.0 | ||
with: | ||
files: ./docs/reports/coverage/coverage.xml | ||
|
||
|
@@ -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/[email protected].11 | ||
uses: pypa/[email protected].12 | ||
with: | ||
user: __token__ | ||
password: ${{ secrets.PYPI_API_TOKEN }} | ||
|