Skip to content

Commit

Permalink
Merge pull request #72 from vlaci/renovate/major-github-artifact-actions
Browse files Browse the repository at this point in the history
chore(deps): update github artifact actions to v4 (major)
  • Loading branch information
vlaci authored Nov 17, 2024
2 parents bad3986 + f444724 commit c9cf2eb
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,9 +128,9 @@ jobs:
docker-options: -e CARGO_NET_GIT_FETCH_WITH_CLI=true
manylinux: auto
- name: Upload wheels
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-linux-${{ matrix.target }}-${{ matrix.tag }}
path: dist
- name: Test wheels
run: |
Expand Down Expand Up @@ -167,9 +167,9 @@ jobs:
args: --release --out dist --find-interpreter
sccache: "true"
- name: Upload wheels
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-windows-${{ matrix.target }}
path: dist
- uses: pdm-project/setup-pdm@v4
name: Setup PDM
Expand Down Expand Up @@ -205,9 +205,9 @@ jobs:
args: --release --out dist --find-interpreter
sccache: "true"
- name: Upload wheels
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-${{ matrix.target }}
path: dist
- uses: pdm-project/setup-pdm@v4
name: Setup PDM
Expand All @@ -229,9 +229,9 @@ jobs:
command: sdist
args: --out dist
- name: Upload sdist
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheels
name: sdist
path: dist

release:
Expand All @@ -240,9 +240,9 @@ jobs:
if: "startsWith(github.ref, 'refs/tags/')"
needs: [Nix, Linux, Windows, MacOS, sdist]
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: wheels
merge-multiple: true
- name: Publish to PyPI
uses: PyO3/maturin-action@v1
env:
Expand Down

0 comments on commit c9cf2eb

Please sign in to comment.