Skip to content

Commit

Permalink
Updates actions (#349)
Browse files Browse the repository at this point in the history
Co-authored-by: pveigadecamargo <pveigadecamargo@anl.gov>
  • Loading branch information
pedrocamargo and pveigadecamargo committed Oct 19, 2022
1 parent 99d7473 commit fbe248f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
python -m pip install --upgrade cffi setuptools twine
- name: Build manylinux Python wheels
uses: RalfG/python-wheels-manylinux-build@v0.3.3-manylinux2014_x86_64
uses: RalfG/python-wheels-manylinux-build@v0.5.0
with:
python-versions: 'cp37-cp37m cp38-cp38 cp39-cp39 cp310-cp310'
pip-wheel-args: '--no-deps'
Expand All @@ -32,7 +32,7 @@ jobs:
- name: Stores artifacts along with the workflow result
if: ${{ github.event_name == 'push'}}
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: library
path: dist/*.whl
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Stores artifacts along with the workflow result
if: ${{ github.event_name == 'push'}}
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: library
path: dist/*.whl
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:

- name: Stores artifacts along with the workflow result
# if: ${{ github.event_name == 'push'}}
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: library
path: dist/*.whl
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_linux_with_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
python3 -m pytest --cov=./ --cov-report=xml
- name: Upload coverage to Codecov
if: ${{ (env.HAS_SECRETS == 'true') }}
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.xml
Expand Down

0 comments on commit fbe248f

Please sign in to comment.