2022-08-12 12:15:51 +00:00
|
|
|
name: Maven Dependency Tree Dependency Submission
|
|
|
|
|
description: A GitHub Action for Maven project to submit a complete dependency tree to populate the GitHub Dependency Graph
|
|
|
|
|
|
2022-08-30 15:14:07 +01:00
|
|
|
branding:
|
|
|
|
|
icon: alert-triangle
|
|
|
|
|
color: red
|
|
|
|
|
|
2022-08-12 12:15:51 +00:00
|
|
|
inputs:
|
|
|
|
|
directory:
|
|
|
|
|
description: The directory that contains the maven project
|
|
|
|
|
type: string
|
|
|
|
|
default: ${{ github.workspace }}
|
|
|
|
|
|
|
|
|
|
token:
|
|
|
|
|
description: The GitHub token to use to submit the depedency snapshot to the repository
|
|
|
|
|
type: string
|
|
|
|
|
default: ${{ github.token }}
|
|
|
|
|
|
2022-10-25 16:23:05 +00:00
|
|
|
github-api-url:
|
|
|
|
|
description: The URL to the GitHub API to use to publish the results to, defaults to reading this from the Actions environment
|
|
|
|
|
type: string
|
|
|
|
|
required: false
|
|
|
|
|
|
2022-08-12 12:15:51 +00:00
|
|
|
runs:
|
|
|
|
|
using: node16
|
2022-08-30 15:14:07 +01:00
|
|
|
main: dist/index.js
|