We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa5b69a commit e4b8070Copy full SHA for e4b8070
.github/workflows/test.yml
@@ -35,13 +35,13 @@ jobs:
35
with:
36
command: ./mvnw ${{ matrix.goal }}
37
- name: Store test results
38
- if: ${{ matrix.goal == 'test' }} && (success() || failure())
39
- uses: actions/upload-artifact@v3
+ if: matrix.goal == 'test' && (success() || failure())
+ uses: actions/upload-artifact@v4
40
41
name: test-results
42
path: '**/target/surefire-reports'
43
- - uses: actions/upload-artifact@v3
44
- if: contains(${{ matrix.goal }}, 'license')
+ - uses: actions/upload-artifact@v4
+ if: contains(matrix.goal, 'license')
45
46
name: license-report
47
path: target/site/aggregate-third-party-report.html
0 commit comments