From 9ab5a0d91fbd658257c56f9374f3ba9d1e3f1774 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Jan 2024 22:45:40 +0000 Subject: [PATCH 1/2] Bump actions/upload-artifact from 3 to 4 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 735a460..ae56861 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/ @@ -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 From 32f59732ae6b3368d0ec6c9726ac23c8636a723e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Jan 2024 22:45:46 +0000 Subject: [PATCH 2/2] Bump actions/download-artifact from 3 to 4 Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 3 to 4. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 735a460..d64c0d0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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/ @@ -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/