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
		
	
			
		
			
				
	
	
		
			13 lines
		
	
	
		
			415 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			415 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: "Dependency Graph Submit"
 | |
| description: Retrieves a previously created dependency graph JSON and submits via the GitHub Dependency Submission API.
 | |
| 
 | |
| inputs:
 | |
|   github-token:
 | |
|     description: The GitHub token used to authenticate when submitting via the Dependency Submission API.
 | |
|     default: ${{ github.token }}
 | |
|     required: false
 | |
| 
 | |
| runs:
 | |
|   using: 'node16'
 | |
|   main: '../../dist/dependency-graph-submit/index.js'
 |