Skip to content

Commit

Permalink
chore(actions): update github artifact actions to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Sep 10, 2024
1 parent 3769152 commit 829ddcc
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
run: make package version=${{ github.ref_name }}

- name: Upload Pipeline Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
retention-days: 1
name: built-artifacts
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
python -m pip install --upgrade pip
make install-dev
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: built-artifacts
path: dist/
Expand All @@ -92,7 +92,7 @@ jobs:
run: make wheel version=${{ github.ref_name }}

- name: Upload Wheel
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
retention-days: 1
name: compiled-wheels
Expand All @@ -106,7 +106,7 @@ jobs:
needs: compile-wheels

steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: compiled-wheels
path: dist/
Expand All @@ -125,7 +125,7 @@ jobs:
needs: compile-wheels

steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: compiled-wheels
path: dist/
Expand Down

0 comments on commit 829ddcc

Please sign in to comment.