Run dependency report on all branches and cat it instead of uploading it #45
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: Submit dependencies | |
on: push | |
permissions: | |
contents: write | |
jobs: | |
library: | |
runs-on: macos-13 | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/[email protected] | |
with: | |
distribution: temurin | |
java-version: 17 | |
cache: gradle | |
- run: .scripts/dependency_report_generate.sh -m library -c allSourceSetsCompileDependenciesMetadata > dependencies_library_raw | |
- run: cat dependencies_library_raw | |
- run: .scripts/github/dependency_report_as_github_json.sh -i dependencies_library_raw -n library -s $(TZ=UTC date +"%Y-%m-%dT%H:%M:%SZ") -l library/build.gradle.kts > dependencies_library.github.json | |
- run: cat dependencies_library.github.json |