Skip to content

Commit

Permalink
Merge pull request OpenChemistry#287 from OpenChemistry/update-ci-act…
Browse files Browse the repository at this point in the history
…ions

Update actions to latest versions
  • Loading branch information
psavery authored May 23, 2023
2 parents 4877e42 + cc4bc65 commit b5f55ae
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,14 @@ jobs:
os: [ubuntu-20.04, macos-latest, windows-2019]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
# Grab the whole history so that setuptools-scm can see the tags and
# give it a correct version even on non-tag push.
fetch-depth: 0
submodules: recursive

- uses: actions/setup-python@v2
- uses: actions/setup-python@v4
name: Install Python
with:
python-version: '3.7'
Expand All @@ -64,7 +64,7 @@ jobs:
- name: Build wheels
run: cibuildwheel --output-dir wheelhouse

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl

Expand All @@ -75,7 +75,7 @@ jobs:
# upload to PyPI on every tag push
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/')
steps:
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v3
with:
name: artifact
path: dist
Expand Down

0 comments on commit b5f55ae

Please sign in to comment.