Chore(deps): Bump org.mockito:mockito-core from 5.7.0 to 5.8.0 #661
Workflow file for this run
This file contains 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
name: Get Licenses | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
- use-tree-format | |
pull_request: | |
branches: | |
- main | |
- develop | |
jobs: | |
scan: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v3 | |
with: | |
java-version: '11.0.13' | |
distribution: 'zulu' | |
- name: Download asset | |
uses: fabriciobastian/[email protected] | |
with: | |
repository: philips-software/spdx-builder | |
file: spdx-builder.jar | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Create dependency list | |
run: | | |
./gradlew -q dependencies --configuration runtimeClasspath > dependencies.txt | |
- name: Create SPDX file | |
run: | | |
cat dependencies.txt | java -jar spdx-builder.jar tree -f gradle -c .spdx-builder.yml -o spdx-builder.spdx | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: licenses | |
path: | | |
spdx-builder.spdx |