Skip to content

Commit 792596b

Browse files
ci: bump actions/upload-artifact from 3 to 4
1 parent dc8473c commit 792596b

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
override: true
5252
- name: Generate license file
5353
run: python ./dev/create_license.py
54-
- uses: actions/upload-artifact@v3
54+
- uses: actions/upload-artifact@v4
5555
with:
5656
name: python-wheel-license
5757
path: LICENSE.txt
@@ -110,7 +110,7 @@ jobs:
110110
run: find target/wheels/
111111

112112
- name: Archive wheels
113-
uses: actions/upload-artifact@v3
113+
uses: actions/upload-artifact@v4
114114
with:
115115
name: dist
116116
path: target/wheels/*
@@ -162,7 +162,7 @@ jobs:
162162
run: find target/wheels/
163163

164164
- name: Archive wheels
165-
uses: actions/upload-artifact@v3
165+
uses: actions/upload-artifact@v4
166166
with:
167167
name: dist
168168
path: target/wheels/*
@@ -191,7 +191,7 @@ jobs:
191191
rustup-components: rust-std rustfmt # Keep them in one line due to https://github.com/PyO3/maturin-action/issues/153
192192
args: --release --manylinux 2014 --features protoc,substrait
193193
- name: Archive wheels
194-
uses: actions/upload-artifact@v3
194+
uses: actions/upload-artifact@v4
195195
with:
196196
name: dist
197197
path: target/wheels/*
@@ -221,7 +221,7 @@ jobs:
221221
rustup-components: rust-std rustfmt # Keep them in one line due to https://github.com/PyO3/maturin-action/issues/153
222222
args: --release --features protoc,substrait
223223
- name: Archive wheels
224-
uses: actions/upload-artifact@v3
224+
uses: actions/upload-artifact@v4
225225
with:
226226
name: dist
227227
path: target/wheels/*
@@ -247,7 +247,7 @@ jobs:
247247
rustup-components: rust-std rustfmt
248248
args: --release --sdist --out dist --features protoc,substrait
249249
- name: Archive wheels
250-
uses: actions/upload-artifact@v3
250+
uses: actions/upload-artifact@v4
251251
with:
252252
name: dist
253253
path: target/wheels/*

.github/workflows/conda.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101
run: |
102102
conda mambabuild --test packages/${{ matrix.arch }}/*.tar.bz2
103103
- name: Upload conda packages as artifacts
104-
uses: actions/upload-artifact@v3
104+
uses: actions/upload-artifact@v4
105105
with:
106106
name: "conda nightlies (python - ${{ matrix.python }}, arch - ${{ matrix.arch }})"
107107
# need to install all conda channel metadata to properly install locally

0 commit comments

Comments
 (0)