From 90a6b7bf04d3ab2e95ca4f9c5bb92420df9365c5 Mon Sep 17 00:00:00 2001 From: nmreadelf <7260482+nmreadelf@users.noreply.github.com> Date: Fri, 11 Oct 2024 16:09:36 +0800 Subject: [PATCH] Upgrade: upload-artifact to v3 (#3984) --- .github/workflows/cicd.yaml | 4 ++-- .github/workflows/integration-test-pkg.yml | 4 ++-- .github/workflows/integration-test.yml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/cicd.yaml b/.github/workflows/cicd.yaml index 33217bb71fb..5c8746f78ad 100644 --- a/.github/workflows/cicd.yaml +++ b/.github/workflows/cicd.yaml @@ -106,7 +106,7 @@ jobs: - name: upload unit test results if: always() - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: linux-ut-result-cpp-${{ github.sha }} # exclude _deps xml @@ -127,7 +127,7 @@ jobs: - name: upload artifacts if: ${{ github.event_name == 'push' }} - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: path: openmldb-*.tar.gz name: release-artifacts diff --git a/.github/workflows/integration-test-pkg.yml b/.github/workflows/integration-test-pkg.yml index 2c5ea196d07..80df361af83 100644 --- a/.github/workflows/integration-test-pkg.yml +++ b/.github/workflows/integration-test-pkg.yml @@ -201,7 +201,7 @@ jobs: run: source /root/.bashrc && bash test/steps/openmldb-sdk-test-python.sh -b PKG -d standalone -l "0" - name: upload test results if: always() - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: python-sdk-standalone-0-pkg-${{ github.sha }} path: | @@ -238,7 +238,7 @@ jobs: run: source /root/.bashrc && bash test/steps/openmldb-sdk-test-python.sh -b PKG -d standalone -l "1,2,3,4,5" - name: upload test results if: always() - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: python-sdk-standalone-1-pkg-${{ github.sha }} path: | diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index af689f2fbc9..3162354db50 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -52,7 +52,7 @@ jobs: - name: upload ut results if: always() - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: openmldb-test-python-${{ github.sha }} path: pytest.xml