Skip to content

Commit b42efba

Browse files
bowenliang123pan3793
authored andcommitted
[KYUUBI #6741] [CI] update GHA actions/upload-artifact from v3 to v4
# 🔍 Description ## Issue References 🔗 This pull request fixes # ## Describe Your Solution 🔧 - as titled ## Types of changes 🔖 - [ ] Bugfix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to change) ## Test Plan 🧪 #### Behavior Without This Pull Request ⚰️ #### Behavior With This Pull Request 🎉 #### Related Unit Tests --- # Checklist 📝 - [ ] This patch was not authored or co-authored using [Generative Tooling](https://www.apache.org/legal/generative-tooling.html) **Be nice. Be informative.** Closes #6741 from bowenliang123/gha-upload-artifact-v4. Closes #6741 83a0ee9 [Bowen Liang] update GHA actions/upload-artifact from v3 to v4 Authored-by: Bowen Liang <[email protected]> Signed-off-by: Bowen Liang <[email protected]>
1 parent 26363f4 commit b42efba

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
- name: make html
4242
run: make -d --directory docs html
4343
- name: upload html
44-
uses: actions/upload-artifact@v3
44+
uses: actions/upload-artifact@v4
4545
with:
4646
path: |
4747
docs/_build/html/

.github/workflows/gluten.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ jobs:
119119
./build/mvn ${MVN_OPT} -Pgluten-it -Pspark-${{ matrix.spark }} -pl ${TEST_MODULES} test
120120
- name: Upload test logs
121121
if: failure()
122-
uses: actions/upload-artifact@v3
122+
uses: actions/upload-artifact@v4
123123
with:
124124
name: unit-tests-log-spark-${{ matrix.spark }}-gluten
125125
path: |

.github/workflows/license.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
-Pspark-3.2 -Pspark-3.3 -Pspark-3.4 -Pspark-3.5
4949
- name: Upload rat report
5050
if: failure()
51-
uses: actions/upload-artifact@v3
51+
uses: actions/upload-artifact@v4
5252
with:
5353
name: rat-report
5454
path: "**/target/rat*.txt"

.github/workflows/master.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ jobs:
121121
verbose: true
122122
- name: Upload test logs
123123
if: failure()
124-
uses: actions/upload-artifact@v3
124+
uses: actions/upload-artifact@v4
125125
with:
126126
name: unit-tests-log-java-${{ matrix.java }}-spark-${{ matrix.spark }}-${{ matrix.comment }}
127127
path: |
@@ -165,7 +165,7 @@ jobs:
165165
-Pscala-${{ matrix.scala }} -Pjava-${{ matrix.java }} -Pspark-${{ matrix.spark }}
166166
- name: Upload test logs
167167
if: failure()
168-
uses: actions/upload-artifact@v3
168+
uses: actions/upload-artifact@v4
169169
with:
170170
name: unit-tests-log-scala-${{ matrix.scala }}-java-${{ matrix.java }}-spark-${{ matrix.spark }}
171171
path: |
@@ -223,7 +223,7 @@ jobs:
223223
-Pscala-${{ matrix.scala }} -Pspark-${{ matrix.spark-runtime }} -Pcross-version-test
224224
- name: Upload test logs
225225
if: failure()
226-
uses: actions/upload-artifact@v3
226+
uses: actions/upload-artifact@v4
227227
with:
228228
name: "unit-tests-log-java-${{ matrix.java }}-scala-${{ matrix.scala }}\
229229
-spark-compile-${{ matrix.spark-compile }}-spark-runtime-${{ matrix.spark-runtime }}\
@@ -293,7 +293,7 @@ jobs:
293293
./build/mvn ${MVN_OPT} -pl ${IT_MODULE} -Pflink-${IT_FLINK} ${{ matrix.flink-archive }} test
294294
- name: Upload test logs
295295
if: failure()
296-
uses: actions/upload-artifact@v3
296+
uses: actions/upload-artifact@v4
297297
with:
298298
name: unit-tests-log-java-${{ matrix.java }}-flink-${{ matrix.flink }}-${{ matrix.comment }}
299299
path: |
@@ -355,7 +355,7 @@ jobs:
355355
./build/mvn ${MVN_OPT} ${{ matrix.hive-archive }} -pl ${TEST_MODULES} test
356356
- name: Upload test logs
357357
if: failure()
358-
uses: actions/upload-artifact@v3
358+
uses: actions/upload-artifact@v4
359359
with:
360360
name: unit-tests-log-java-${{ matrix.java }}-hive-${{ matrix.comment }}
361361
path: |
@@ -400,7 +400,7 @@ jobs:
400400
-Dtest=none -DwildcardSuites=org.apache.kyuubi.operation.tpcds,org.apache.kyuubi.spark.connector.tpcds.TPCDSQuerySuite,org.apache.kyuubi.spark.connector.tpch.TPCHQuerySuite
401401
- name: Upload test logs
402402
if: failure()
403-
uses: actions/upload-artifact@v3
403+
uses: actions/upload-artifact@v4
404404
with:
405405
name: unit-tests-log-java-${{ matrix.java }}-hive-${{ matrix.comment }}
406406
path: |
@@ -474,7 +474,7 @@ jobs:
474474
kubectl get pods | grep driver | awk -F " " '{print$1}' | xargs -I {} kubectl logs {}
475475
- name: Upload test logs
476476
if: failure()
477-
uses: actions/upload-artifact@v3
477+
uses: actions/upload-artifact@v4
478478
with:
479479
name: unit-tests-log-kyuubi-on-k8s-it
480480
path: |
@@ -516,7 +516,7 @@ jobs:
516516
kubectl get pods | grep driver | awk -F " " '{print$1}' | xargs -I {} kubectl logs {}
517517
- name: Upload test logs
518518
if: failure()
519-
uses: actions/upload-artifact@v3
519+
uses: actions/upload-artifact@v4
520520
with:
521521
name: unit-tests-log-spark-on-k8s-it
522522
path: |
@@ -557,7 +557,7 @@ jobs:
557557
./build/mvn ${MVN_OPT} -pl ${TEST_MODULES} test
558558
- name: Upload test logs
559559
if: failure()
560-
uses: actions/upload-artifact@v3
560+
uses: actions/upload-artifact@v4
561561
with:
562562
name: unit-tests-log-java-${{ matrix.java }}-zookeeper-${{ matrix.comment }}
563563
path: |

.github/workflows/nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
run: ./build/mvn clean install ${{ matrix.profiles }} -Dmaven.javadoc.skip=true -V
5050
- name: Upload test logs
5151
if: failure()
52-
uses: actions/upload-artifact@v3
52+
uses: actions/upload-artifact@v4
5353
with:
5454
name: unit-tests-log
5555
path: |

.github/workflows/style.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ jobs:
125125
VALIDATE_XML: true
126126
- name: Upload Super Linter logs
127127
if: failure()
128-
uses: actions/upload-artifact@v3
128+
uses: actions/upload-artifact@v4
129129
with:
130130
name: super-linter-log
131131
path: super-linter.log

0 commit comments

Comments
 (0)