Skip to content

Commit

Permalink
Update actions (#697)
Browse files Browse the repository at this point in the history
* Update publish-package.yml

* Update run-tests.yml

* Update run-tests.yml
  • Loading branch information
benkiel authored Aug 18, 2023
1 parent 1ee0507 commit b5aa55e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3.5.3
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4.7.0
with:
python-version: '3.x'
- name: Install dependencies
Expand All @@ -40,4 +40,4 @@ jobs:
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python setup.py sdist bdist_wheel
twine upload dist/*
twine upload dist/*
6 changes: 3 additions & 3 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ jobs:
- platform: windows-latest
python-version: 3.10
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3.5.3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4.7.0
with:
python-version: ${{ matrix.python-version }}
- name: Install packages
Expand All @@ -44,7 +44,7 @@ jobs:
coverage combine
coverage xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1.5.2
uses: codecov/codecov-action@v3.1.4
with:
file: coverage.xml
flags: unittests
Expand Down

0 comments on commit b5aa55e

Please sign in to comment.