diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7e8860cc..3a48cf0c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -99,7 +99,7 @@ jobs: pdm build - name: Publish Python artifacts on Github artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: python-artifacts path: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ca182990..7ba70d5a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -45,7 +45,7 @@ jobs: - name: "Build wheel and sdist" run: pdm build - name: "Upload wheel and sdist" - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: dist path: dist @@ -55,7 +55,7 @@ jobs: pdm export --prod -f requirements -o requirements.txt - name: Publish frozen requirements.txt - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: requirements path: requirements.txt