diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3956353b9..f53f99edf 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -349,7 +349,7 @@ jobs: - name: Upload artifact if: env.SHOULD_RUN == 1 - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 continue-on-error: ${{ env.UPLOADED == '1' }} with: overwrite: true @@ -430,7 +430,7 @@ jobs: fi - name: Upload to artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 continue-on-error: ${{ env.UPLOADED == '1' }} with: name: ${{ env.WHL_NAME }} @@ -518,7 +518,7 @@ jobs: twine check dist/$whl - name: Upload to artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: ${{ env.WHL_NAME }} path: dist/${{ env.WHL_NAME }} diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml index 6dac2f57e..62ac5bb01 100644 --- a/.github/workflows/unit_tests.yml +++ b/.github/workflows/unit_tests.yml @@ -295,7 +295,7 @@ jobs: run: curl -s -F "runid=${{ github.run_id }}" -F "repo=${{ env.repo }}" -F "ref=${{ env.ref }}" -F "sha256=${{ env.SOURCE_HASH }}" -F "file=@dist/gptqmodel_source.tar.gz" http://$RUNNER/gpu/whl/upload - name: Upload source to github artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: source path: dist/gptqmodel_source.tar.gz @@ -338,7 +338,7 @@ jobs: - name: Upload wheel to github artifact if: github.event.inputs.artifact_id == '' && !cancelled() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: whl path: dist/${{ env.WHL_NAME }} @@ -440,7 +440,7 @@ jobs: # - name: Download source from github # if: env.SOURCE_DOWNLOADED == '' && !cancelled() - # uses: actions/download-artifact@v5 + # uses: actions/download-artifact@v6 # with: # name: source # path: dist @@ -472,7 +472,7 @@ jobs: - name: Download artifact from github if: env.WHL_DOWNLOADED == '' && !cancelled() - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: name: whl path: dist