Skip to content

Commit

Permalink
Bump actions/upload-artifact from 3 to 4 (#30)
Browse files Browse the repository at this point in the history
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@v3...v4)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Aug 16, 2024
1 parent 6842214 commit ab52384
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
run: pipx run build

- name: Store artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
path: dist/*

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/conda_package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
run: conda activate up

- name: store windows result
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: ${{ matrix.os == 'windows-latest' }}
with:
path: win-64/*.tar.bz2
Expand All @@ -61,7 +61,7 @@ jobs:
run: anaconda upload -l main -u ml4t win-64/*.tar.bz2

- name: store linux result
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: ${{ matrix.os == 'ubuntu-latest' }}
with:
path: linux-64/*.tar.bz2
Expand All @@ -71,7 +71,7 @@ jobs:
run: anaconda upload -l main -u ml4t linux-64/*.tar.bz2

- name: store macos result
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: ${{ matrix.os == 'macos-latest' }}
with:
path: osx-64/*.tar.bz2
Expand Down

0 comments on commit ab52384

Please sign in to comment.