├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .eslintrc.json ├── .gitattributes ├── .github └── workflows │ ├── codeql.yml │ ├── go-dependency-submission.yml │ ├── release-new-action-version.yml │ └── test.yml ├── .gitignore ├── .prettierrc ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── SECURITY.md ├── action.yml ├── babel.config.js ├── dist ├── index.js ├── index.js.map ├── licenses.txt ├── parse.js ├── process.js └── sourcemap-register.js ├── go-example ├── cmd │ └── octocat.go ├── go.mod └── go.sum ├── jest.config.d.ts ├── jest.config.js ├── package.json ├── src ├── index.ts ├── parse.test.ts ├── parse.ts ├── process.test.ts └── process.ts └── tsconfig.json /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/go-dependency-submission/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/go-dependency-submission/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/go-dependency-submission/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | dist/* linguist-generated=true -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/go-dependency-submission/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/go-dependency-submission.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/go-dependency-submission/HEAD/.github/workflows/go-dependency-submission.yml -------------------------------------------------------------------------------- /.github/workflows/release-new-action-version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/go-dependency-submission/HEAD/.github/workflows/release-new-action-version.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/go-dependency-submission/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/go-dependency-submission/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/go-dependency-submission/HEAD/.prettierrc -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @actions/advanced-security-dependency-graph 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/go-dependency-submission/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/go-dependency-submission/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/go-dependency-submission/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/go-dependency-submission/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/go-dependency-submission/HEAD/SECURITY.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/go-dependency-submission/HEAD/action.yml -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/go-dependency-submission/HEAD/babel.config.js -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/go-dependency-submission/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/go-dependency-submission/HEAD/dist/index.js.map -------------------------------------------------------------------------------- /dist/licenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/go-dependency-submission/HEAD/dist/licenses.txt -------------------------------------------------------------------------------- /dist/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/go-dependency-submission/HEAD/dist/parse.js -------------------------------------------------------------------------------- /dist/process.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/go-dependency-submission/HEAD/dist/process.js -------------------------------------------------------------------------------- /dist/sourcemap-register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/go-dependency-submission/HEAD/dist/sourcemap-register.js -------------------------------------------------------------------------------- /go-example/cmd/octocat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/go-dependency-submission/HEAD/go-example/cmd/octocat.go -------------------------------------------------------------------------------- /go-example/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/go-dependency-submission/HEAD/go-example/go.mod -------------------------------------------------------------------------------- /go-example/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/go-dependency-submission/HEAD/go-example/go.sum -------------------------------------------------------------------------------- /jest.config.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/go-dependency-submission/HEAD/jest.config.d.ts -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/go-dependency-submission/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/go-dependency-submission/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/go-dependency-submission/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/parse.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/go-dependency-submission/HEAD/src/parse.test.ts -------------------------------------------------------------------------------- /src/parse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/go-dependency-submission/HEAD/src/parse.ts -------------------------------------------------------------------------------- /src/process.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/go-dependency-submission/HEAD/src/process.test.ts -------------------------------------------------------------------------------- /src/process.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/go-dependency-submission/HEAD/src/process.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/go-dependency-submission/HEAD/tsconfig.json --------------------------------------------------------------------------------