Merge maintenance/mps20241 into maintenance/mps20251 #603
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| on: [pull_request] | |
| jobs: | |
| depchecktest: | |
| runs-on: ubuntu-latest | |
| name: depecheck_test | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
| - name: Setup Java | |
| uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4 | |
| with: | |
| distribution: temurin | |
| java-version: 17 | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@06832c7b30a0129d7fb559bcc6e43d26f6374244 # v4 | |
| - name: Call setup | |
| run: ./gradlew dependencies | |
| - name: Dependency Check | |
| uses: dependency-check/Dependency-Check_Action@3102a65fd5f36d0000297576acc56a475b0de98d | |
| env: | |
| # actions/setup-java changes JAVA_HOME, so it needs to be reset to match the depcheck image | |
| JAVA_HOME: /opt/jdk | |
| id: Depcheck | |
| with: | |
| project: 'iets3.opensource' | |
| format: 'HTML' | |
| out: 'reports' | |
| - name: Upload Test results | |
| uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4 | |
| with: | |
| name: Dependency Check Report | |
| path: ${{github.workspace}}/reports |