mirror of
				https://hub.gitmirror.com/https://github.com/gradle/gradle-build-action
				synced 2025-10-31 18:10:05 +08:00 
			
		
		
		
	 be413309fa
			
		
	
	
		be413309fa
		
			
		
	
	
	
	
		
			
			- Dependency graph init-script references published version of plugin jar.
- `dependency-graph-generate` action will:
     - Provision Gradle if required
     - Execute Gradle with dependency-graph plugin to generate graph JSON
     - Upload dependency-graph JSON file as workflow artifact
- `dependency-graph-submit` action will:
    - Download dependency-graph JSON artifact
    - Submit the graph via the GitHub dependency submission API
		
	
			
		
			
				
	
	
		
			20 lines
		
	
	
		
			732 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			732 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: "Dependency Graph Generate"
 | |
| description: Calculates the complete dependency graph for the repository, saving it as a JSON artifact.
 | |
| 
 | |
| inputs:
 | |
|   gradle-version:
 | |
|     description: Gradle version to use. If specified, this Gradle version will be downloaded, added to the PATH and used for invoking Gradle.
 | |
|     required: false
 | |
| 
 | |
|   gradle-executable:
 | |
|     description: Path to the Gradle executable. If specified, this executable will be added to the PATH and used for invoking Gradle.
 | |
|     required: false
 | |
| 
 | |
|   build-root-directory:
 | |
|     description: Path to the root directory of the build. Default is the root of the GitHub workspace.
 | |
|     required: false
 | |
| 
 | |
| runs:
 | |
|   using: 'node16'
 | |
|   main: '../../dist/dependency-graph-generate/index.js'
 |