├── .github └── workflows │ ├── build.yaml │ ├── integration-test.yaml │ ├── tweet-action │ └── template.ejs │ ├── twitter.yaml │ └── unit-test.yaml ├── .gitignore ├── .prettierrc.yml ├── LICENSE ├── README.md ├── __tests__ ├── downloader.test.ts ├── helper.ts ├── inputs.test.ts ├── trivy.test.ts └── validator.test.ts ├── action.yml ├── assets └── img │ └── issue.png ├── dist ├── default.tpl └── index.js ├── jest.config.js ├── package.json ├── src ├── default.tpl ├── downloader.ts ├── github.ts ├── index.ts ├── inputs.ts ├── interface.ts ├── trivy.ts └── validator.ts ├── tsconfig.json └── yarn.lock /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazy-actions/gitrivy/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/integration-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazy-actions/gitrivy/HEAD/.github/workflows/integration-test.yaml -------------------------------------------------------------------------------- /.github/workflows/tweet-action/template.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazy-actions/gitrivy/HEAD/.github/workflows/tweet-action/template.ejs -------------------------------------------------------------------------------- /.github/workflows/twitter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazy-actions/gitrivy/HEAD/.github/workflows/twitter.yaml -------------------------------------------------------------------------------- /.github/workflows/unit-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazy-actions/gitrivy/HEAD/.github/workflows/unit-test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazy-actions/gitrivy/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazy-actions/gitrivy/HEAD/.prettierrc.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazy-actions/gitrivy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazy-actions/gitrivy/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/downloader.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazy-actions/gitrivy/HEAD/__tests__/downloader.test.ts -------------------------------------------------------------------------------- /__tests__/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazy-actions/gitrivy/HEAD/__tests__/helper.ts -------------------------------------------------------------------------------- /__tests__/inputs.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazy-actions/gitrivy/HEAD/__tests__/inputs.test.ts -------------------------------------------------------------------------------- /__tests__/trivy.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazy-actions/gitrivy/HEAD/__tests__/trivy.test.ts -------------------------------------------------------------------------------- /__tests__/validator.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazy-actions/gitrivy/HEAD/__tests__/validator.test.ts -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazy-actions/gitrivy/HEAD/action.yml -------------------------------------------------------------------------------- /assets/img/issue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazy-actions/gitrivy/HEAD/assets/img/issue.png -------------------------------------------------------------------------------- /dist/default.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazy-actions/gitrivy/HEAD/dist/default.tpl -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazy-actions/gitrivy/HEAD/dist/index.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazy-actions/gitrivy/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazy-actions/gitrivy/HEAD/package.json -------------------------------------------------------------------------------- /src/default.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazy-actions/gitrivy/HEAD/src/default.tpl -------------------------------------------------------------------------------- /src/downloader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazy-actions/gitrivy/HEAD/src/downloader.ts -------------------------------------------------------------------------------- /src/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazy-actions/gitrivy/HEAD/src/github.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazy-actions/gitrivy/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/inputs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazy-actions/gitrivy/HEAD/src/inputs.ts -------------------------------------------------------------------------------- /src/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazy-actions/gitrivy/HEAD/src/interface.ts -------------------------------------------------------------------------------- /src/trivy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazy-actions/gitrivy/HEAD/src/trivy.ts -------------------------------------------------------------------------------- /src/validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazy-actions/gitrivy/HEAD/src/validator.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazy-actions/gitrivy/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazy-actions/gitrivy/HEAD/yarn.lock --------------------------------------------------------------------------------