Skip to content

Commit

Permalink
Bump actions/upload-artifact from 3 to 4 (#409)
Browse files Browse the repository at this point in the history
* 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](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] <[email protected]>

* Update download-artifact + use matrix specific artifact names and merge

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Chris Marslender <[email protected]>
  • Loading branch information
dependabot[bot] and cmmarslender authored May 17, 2024
1 parent 041a8dd commit 09c6342
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-arm64-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
'
- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheels
path: target/wheels/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-m1-wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
# ignoring `clvm_rs.so`, which is pretty important)
- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheels
path: ./target/wheels/
Expand All @@ -90,7 +90,7 @@ jobs:
python-version: "3.10"

- name: Download artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: wheels
path: ./target/wheels/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
run: node wasm/tests/index.js

- name: Upload npm pkg artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: npm-pkg
path: ./wasm/pkg/clvm_wasm-*.tgz
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,9 +126,9 @@ jobs:
# ignoring `clvm_rs.so`, which is pretty important)
- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-${{ matrix.os }}-py-${{ matrix.python }}
path: ./target/wheels/

upload:
Expand All @@ -147,9 +147,10 @@ jobs:
python-version: "3.10"

- name: Download artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: wheels
merge-multiple: true
pattern: wheels-*
path: ./target/wheels/

- name: publish (PyPi)
Expand Down

0 comments on commit 09c6342

Please sign in to comment.