From f3ebb539112bf281f760c969842dbab9016545ef Mon Sep 17 00:00:00 2001 From: Chris Bono Date: Thu, 30 Jan 2025 19:44:38 -0600 Subject: [PATCH] Update actions/upload-artifact to required v4 --- .github/workflows/apps-plugin-snapshot.yml | 2 +- .github/workflows/ci-it.yml | 2 +- .github/workflows/ci-pr.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/apps-plugin-snapshot.yml b/.github/workflows/apps-plugin-snapshot.yml index 48a4c944..aba50e3b 100644 --- a/.github/workflows/apps-plugin-snapshot.yml +++ b/.github/workflows/apps-plugin-snapshot.yml @@ -54,7 +54,7 @@ jobs: jfrog rt build-publish - name: Capture Test Results if: ${{ always() }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: test-results path: '**/target/surefire-reports/**/*.*' diff --git a/.github/workflows/ci-it.yml b/.github/workflows/ci-it.yml index ed9a55bd..fb04d25a 100644 --- a/.github/workflows/ci-it.yml +++ b/.github/workflows/ci-it.yml @@ -82,7 +82,7 @@ jobs: fail-on-empty: 'false' - name: 'Upload: Error logs' if: ${{ failure() }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: 'modified-surefire-reports' path: '**/target/surefire-reports' diff --git a/.github/workflows/ci-pr.yml b/.github/workflows/ci-pr.yml index 70212f0a..c53a1bd2 100644 --- a/.github/workflows/ci-pr.yml +++ b/.github/workflows/ci-pr.yml @@ -70,7 +70,7 @@ jobs: $BUILD_DIR/scan-folders.sh table - name: 'Upload: Error logs' if: ${{ failure() }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: 'modified-surefire-reports' path: '**/target/surefire-reports'