├── .editorconfig ├── .github └── workflows │ ├── dependency-review.yml │ └── main.yml ├── .gitignore ├── .yarnrc.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── action.yml ├── biome.json ├── dist ├── LICENSE.txt └── index.js ├── mise.toml ├── package.json ├── renovate.json ├── scripts └── release.sh ├── src ├── analyze.ts ├── constants.ts ├── index.ts ├── installer.ts └── system.ts ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossa-contrib/fossa-action/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/dependency-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossa-contrib/fossa-action/HEAD/.github/workflows/dependency-review.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossa-contrib/fossa-action/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.yarn/ 2 | /node_modules/ 3 | -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- 1 | nodeLinker: node-modules 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossa-contrib/fossa-action/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossa-contrib/fossa-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossa-contrib/fossa-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossa-contrib/fossa-action/HEAD/action.yml -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossa-contrib/fossa-action/HEAD/biome.json -------------------------------------------------------------------------------- /dist/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossa-contrib/fossa-action/HEAD/dist/LICENSE.txt -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossa-contrib/fossa-action/HEAD/dist/index.js -------------------------------------------------------------------------------- /mise.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossa-contrib/fossa-action/HEAD/mise.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossa-contrib/fossa-action/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossa-contrib/fossa-action/HEAD/renovate.json -------------------------------------------------------------------------------- /scripts/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossa-contrib/fossa-action/HEAD/scripts/release.sh -------------------------------------------------------------------------------- /src/analyze.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossa-contrib/fossa-action/HEAD/src/analyze.ts -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossa-contrib/fossa-action/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossa-contrib/fossa-action/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/installer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossa-contrib/fossa-action/HEAD/src/installer.ts -------------------------------------------------------------------------------- /src/system.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossa-contrib/fossa-action/HEAD/src/system.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossa-contrib/fossa-action/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossa-contrib/fossa-action/HEAD/yarn.lock --------------------------------------------------------------------------------