Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the github-actions group with 2 updates #3532

Merged
merged 2 commits into from
Feb 21, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ jobs:
if: success() || failure()
uses: actions/upload-artifact@v4
with:
name: test-results
name: test-results-JUnit
path: |
**/junit-*.xml
**/TEST-*.xml
Expand Down Expand Up @@ -200,7 +200,7 @@ jobs:
if: success() || failure()
uses: actions/upload-artifact@v4
with:
name: test-results
name: test-results-non-app-server-integration
path: |
**/junit-*.xml
**/TEST-*.xml
Expand Down Expand Up @@ -239,7 +239,7 @@ jobs:
if: success() || failure()
uses: actions/upload-artifact@v4
with:
name: test-results
name: test-results-app-server-integration
path: |
**/junit-*.xml
**/TEST-*.xml
Expand Down Expand Up @@ -280,7 +280,7 @@ jobs:
if: success() || failure()
uses: actions/upload-artifact@v4
with:
name: test-results
name: test-results-windows
path: |
**/junit-*.xml
**/TEST-*.xml
Expand Down Expand Up @@ -316,7 +316,7 @@ jobs:
if: success() || failure()
uses: actions/upload-artifact@v4
with:
name: test-results
name: test-results-jdk-compatibility-${{ matrix.version }}-${{ matrix.distribution }}
path: |
**/junit-*.xml
**/TEST-*.xml
Expand Down Expand Up @@ -349,7 +349,7 @@ jobs:
if: success() || failure()
uses: actions/upload-artifact@v4
with:
name: test-results
name: test-results-jboss-integration
path: |
**/junit-*.xml
**/TEST-*.xml
4 changes: 2 additions & 2 deletions .github/workflows/test-reporter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:
- uses: elastic/apm-pipeline-library/.github/actions/test-report@current
with:
artifact: test-results # artifact name
name: JUnit Tests # Name of the check run which will be created
artifact: /test-results-(.*)/
name: 'Test Results $1'
Comment on lines +17 to +18
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nice!

path: "**/*.xml" # Path to test results (inside artifact .zip)
reporter: java-junit # Format of test results
Loading