Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/bwc-test-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
echo "Running backwards compatibility tests..."
./gradlew bwcTestSuite
- name: Upload failed logs
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: failure()
with:
name: logs
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docker-security-test-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
echo "Security plugin is NOT available skipping this run as tests without security have already been run"
fi
- name: Upload failed logs
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: failure()
with:
name: logs
Expand All @@ -96,7 +96,7 @@ jobs:
- name: Tar logs
run: tar cvzf ./logs.tgz ./logs
- name: Upload logs to GitHub
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: failure()
with:
name: logs.tgz
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/multi-node-test-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
chown -R 1000:1000 `pwd`
su `id -un 1000` -c "./gradlew integTest -PnumNodes=3 ${{ env.TEST_FILTER }}"
- name: Upload failed logs
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: failure()
with:
name: logs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/security-test-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
chown -R 1000:1000 `pwd`
su `id -un 1000` -c "./gradlew integTest -Dsecurity=true -Dhttps=true --tests '*SecurityBehaviorIT'"
- name: Upload failed logs
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: failure()
with:
name: logs
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/test-and-build-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,22 +61,22 @@ jobs:
run: |
su `id -un 1000` -c "./gradlew jacocoTestReport"
- name: Upload coverage XML
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: always() && matrix.java == 21
with:
name: coverage-xml-${{ matrix.java }}-${{ matrix.feature }}
path: build/reports/jacoco/**/jacocoTestReport.xml
if-no-files-found: warn
overwrite: 'true'
- name: Upload failed logs
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: ${{ failure() }}
with:
name: logs-${{ matrix.java }}-${{ matrix.feature }}
path: build/testclusters/integTest-*/logs/*
overwrite: 'true'
- name: Upload test reports
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: ${{ failure() }}
with:
name: test-reports-linux-${{ matrix.java }}-${{ matrix.feature }}
Expand All @@ -89,7 +89,7 @@ jobs:
# This step uses the upload-artifact Github action: https://github.com/actions/upload-artifact
- name: Upload Artifacts
# v4 requires node.js 20 which is not supported
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: index-management-plugin-ubuntu-latest-${{ matrix.java }}-${{ matrix.feature }}
path: index-management-artifacts
Expand Down Expand Up @@ -146,7 +146,7 @@ jobs:
cp ./build/distributions/*.zip index-management-artifacts
# This step uses the upload-artifact Github action: https://github.com/actions/upload-artifact
- name: Upload Artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: index-management-plugin-${{ matrix.os }}-${{ matrix.java }}-${{ matrix.feature }}
path: index-management-artifacts
Expand Down
Loading