diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 735a460..be75302 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -73,14 +73,14 @@ jobs: run: python -m build - run: twine check dist/* - name: Upload sdist and wheel artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: dist path: dist/ - name: Build git archive run: mkdir archive && git archive -v -o archive/archive.tgz HEAD - name: Upload git archive artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: archive path: archive/ @@ -94,13 +94,13 @@ jobs: steps: - name: Download sdist and wheel artifacts if: matrix.package != 'archive' - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: dist path: dist/ - name: Download git archive artifact if: matrix.package == 'archive' - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: archive path: archive/ @@ -197,12 +197,12 @@ jobs: --reindex-bids - name: Upload output artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: connectome path: ./outputs/ - name: Upload docker image artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: docker-image path: ${HOME}/docker/image.tar @@ -212,7 +212,7 @@ jobs: # needs: [test-package, test-coverage] # if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') # steps: - # - uses: actions/download-artifact@v3 + # - uses: actions/download-artifact@v4 # with: # name: dist # path: dist/