Skip to content

Commit

Permalink
update actions/upload-artifact from v3 to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael-J-Ward committed Aug 22, 2024
1 parent b2982ec commit 74a8509
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
override: true
- name: Generate license file
run: python ./dev/create_license.py
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: python-wheel-license
path: LICENSE.txt
Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:
run: find target/wheels/

- name: Archive wheels
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: dist
path: target/wheels/*
Expand Down Expand Up @@ -162,7 +162,7 @@ jobs:
run: find target/wheels/

- name: Archive wheels
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: dist
path: target/wheels/*
Expand Down Expand Up @@ -191,7 +191,7 @@ jobs:
rustup-components: rust-std rustfmt # Keep them in one line due to https://github.com/PyO3/maturin-action/issues/153
args: --release --manylinux 2014 --features protoc,substrait
- name: Archive wheels
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: dist
path: target/wheels/*
Expand Down Expand Up @@ -221,7 +221,7 @@ jobs:
rustup-components: rust-std rustfmt # Keep them in one line due to https://github.com/PyO3/maturin-action/issues/153
args: --release --features protoc,substrait
- name: Archive wheels
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: dist
path: target/wheels/*
Expand All @@ -247,7 +247,7 @@ jobs:
rustup-components: rust-std rustfmt
args: --release --sdist --out dist --features protoc,substrait
- name: Archive wheels
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: dist
path: target/wheels/*
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ jobs:
run: |
conda mambabuild --test packages/${{ matrix.arch }}/*.tar.bz2
- name: Upload conda packages as artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: "conda nightlies (python - ${{ matrix.python }}, arch - ${{ matrix.arch }})"
# need to install all conda channel metadata to properly install locally
Expand Down

0 comments on commit 74a8509

Please sign in to comment.