Skip to content

Commit

Permalink
downgrade actions in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
AlbertDominguez committed Oct 7, 2024
1 parent d64b144 commit cf5d244
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/cibuildwheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
py: [cp39, cp310, cp311, cp312]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
name: Checkout repository

- uses: actions/setup-python@v4
Expand Down Expand Up @@ -87,13 +87,13 @@ jobs:
name: Build source distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
name: Checkout repository

- name: Build sdist
run: pipx run build --sdist

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v3
name: Upload sdist
with:
name: dist
Expand All @@ -106,7 +106,7 @@ jobs:
runs-on: ubuntu-latest
if: github.event_name == 'release' && github.event.action == 'published' # upload to pypi only on release
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v3
name: Download wheels and sdist
with:
name: dist
Expand Down

0 comments on commit cf5d244

Please sign in to comment.