gitextract_h9kmw0op/ ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── CODEOWNERS │ ├── CONTRIBUTING.md │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ └── bug_report.md │ ├── SUPPORT.md │ ├── dependabot.yml │ ├── labels.yml │ └── workflows/ │ ├── ci.yml │ ├── labels.yml │ ├── pre-checkin.yml │ └── test.yml ├── .gitignore ├── .prettierrc.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── __tests__/ │ ├── github.test.ts │ └── installer.test.ts ├── action.yml ├── dist/ │ └── index.js ├── jest.config.js ├── package.json ├── src/ │ ├── github.ts │ ├── installer.ts │ ├── main.ts │ └── state-helper.ts ├── test/ │ ├── Dockerfile │ ├── Dockerfile-diun │ └── Dockerfile-sudo └── tsconfig.json