This is an automated email from the ASF dual-hosted git repository.
roryqi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-uniffle.git
The following commit(s) were added to refs/heads/master by this push:
new 89dd9283a fix(CI): Upgrade to actions/upload-artifact@v4 (#2360)
89dd9283a is described below
commit 89dd9283add25c6b64ecdc637be018e09413f2be
Author: Junfan Zhang <[email protected]>
AuthorDate: Fri Feb 7 10:23:08 2025 +0800
fix(CI): Upgrade to actions/upload-artifact@v4 (#2360)
### What changes were proposed in this pull request?
Upgrade to actions/upload-artifact@v4
### Why are the changes needed?
fix CI failure
### Does this PR introduce _any_ user-facing change?
No.
### How was this patch tested?
Neen't
Co-authored-by: Junfan Zhang <[email protected]>
---
.github/workflows/build.yml | 2 +-
.github/workflows/parallel.yml | 4 ++--
.github/workflows/sequential.yml | 2 +-
.github/workflows/single.yml | 2 +-
4 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 81972020a..9015be25a 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -116,7 +116,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Upload
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
with:
name: Event File
path: ${{ github.event_path }}
diff --git a/.github/workflows/parallel.yml b/.github/workflows/parallel.yml
index 6adf0f095..d4c3ec249 100644
--- a/.github/workflows/parallel.yml
+++ b/.github/workflows/parallel.yml
@@ -102,7 +102,7 @@ jobs:
continue-on-error: true
- name: Upload test reports
if: always() && inputs.reports-path != ''
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
with:
name: ${{ inputs.reports-name }}-${{ matrix.profile }}
path: ${{ inputs.reports-path }}
@@ -111,7 +111,7 @@ jobs:
uses: codecov/codecov-action@v3
- name: Upload test logs
if: failure()
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
with:
name: ${{ inputs.tests-name }}-log-${{ matrix.profile }}
path: |
diff --git a/.github/workflows/sequential.yml b/.github/workflows/sequential.yml
index 409ab3ad1..c80890dc5 100644
--- a/.github/workflows/sequential.yml
+++ b/.github/workflows/sequential.yml
@@ -92,7 +92,7 @@ jobs:
continue-on-error: true
- name: Upload test reports
if: ${{ failure() && inputs.reports-path != '' }}
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
with:
name: ${{ inputs.reports-name }}
path: ${{ inputs.reports-path }}
diff --git a/.github/workflows/single.yml b/.github/workflows/single.yml
index f611094d0..7d1f57fba 100644
--- a/.github/workflows/single.yml
+++ b/.github/workflows/single.yml
@@ -86,7 +86,7 @@ jobs:
continue-on-error: true
- name: Upload test reports
if: ${{ failure() && inputs.reports-path != '' }}
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
with:
name: ${{ inputs.reports-name }}
path: ${{ inputs.reports-path }}