├── .github ├── CODEOWNERS ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml ├── qa-nginx-redirecting │ ├── compose.yml │ ├── generate-ssl.sh │ └── nginx.conf ├── qa-sq-behind-ngix │ ├── compose.yml │ └── nginx.conf └── workflows │ ├── PullRequestClosed.yml │ ├── PullRequestCreated.yml │ ├── RequestReview.yml │ ├── SubmitReview.yml │ ├── qa-deprecated-c-cpp.yml │ ├── qa-install-build-wrapper.yml │ ├── qa-main.yml │ ├── qa-scripts.yml │ ├── unit-tests.yml │ ├── update-tags.yml │ └── version_update.yml ├── .gitignore ├── LICENSE.txt ├── README.md ├── SECURITY.md ├── action.yml ├── contributing.md ├── deprecated-c-cpp └── action.yml ├── dist ├── exec-BTlTa8sL.js ├── exec-BTlTa8sL.js.map ├── index.js ├── index.js.map ├── install-build-wrapper.js └── install-build-wrapper.js.map ├── images ├── SQ_Logo_Server_Cloud_Dark_Backgrounds.png └── SQ_Logo_Server_Cloud_Light_Backgrounds.png ├── install-build-wrapper └── action.yml ├── package.json ├── rollup.config.js ├── scripts ├── cert.sh ├── configure_paths.sh ├── create_install_path.sh ├── download.sh ├── fetch_latest_version.sh └── utils.sh ├── sonar-scanner-version ├── src ├── install-build-wrapper │ ├── __tests__ │ │ └── utils.test.js │ ├── install-build-wrapper.js │ └── utils.js └── main │ ├── __tests__ │ ├── mocks.js │ ├── sanity-checks.test.js │ └── utils.test.js │ ├── index.js │ ├── install-sonar-scanner.js │ ├── run-sonar-scanner.js │ ├── sanity-checks.js │ └── utils.js └── test ├── assertFileContains ├── assertFileDoesntExist ├── assertFileExists ├── example-project ├── sonar-project.properties └── src │ └── main.js ├── gradle-project-kotlin └── build.gradle.kts ├── gradle-project └── build.gradle └── maven-project └── pom.xml /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | .github/* @sonarsource/orchestration-processing-squad 2 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/sonarqube-scan-action/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/sonarqube-scan-action/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/qa-nginx-redirecting/compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/sonarqube-scan-action/HEAD/.github/qa-nginx-redirecting/compose.yml -------------------------------------------------------------------------------- /.github/qa-nginx-redirecting/generate-ssl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/sonarqube-scan-action/HEAD/.github/qa-nginx-redirecting/generate-ssl.sh -------------------------------------------------------------------------------- /.github/qa-nginx-redirecting/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/sonarqube-scan-action/HEAD/.github/qa-nginx-redirecting/nginx.conf -------------------------------------------------------------------------------- /.github/qa-sq-behind-ngix/compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/sonarqube-scan-action/HEAD/.github/qa-sq-behind-ngix/compose.yml -------------------------------------------------------------------------------- /.github/qa-sq-behind-ngix/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/sonarqube-scan-action/HEAD/.github/qa-sq-behind-ngix/nginx.conf -------------------------------------------------------------------------------- /.github/workflows/PullRequestClosed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/sonarqube-scan-action/HEAD/.github/workflows/PullRequestClosed.yml -------------------------------------------------------------------------------- /.github/workflows/PullRequestCreated.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/sonarqube-scan-action/HEAD/.github/workflows/PullRequestCreated.yml -------------------------------------------------------------------------------- /.github/workflows/RequestReview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/sonarqube-scan-action/HEAD/.github/workflows/RequestReview.yml -------------------------------------------------------------------------------- /.github/workflows/SubmitReview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/sonarqube-scan-action/HEAD/.github/workflows/SubmitReview.yml -------------------------------------------------------------------------------- /.github/workflows/qa-deprecated-c-cpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/sonarqube-scan-action/HEAD/.github/workflows/qa-deprecated-c-cpp.yml -------------------------------------------------------------------------------- /.github/workflows/qa-install-build-wrapper.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/sonarqube-scan-action/HEAD/.github/workflows/qa-install-build-wrapper.yml -------------------------------------------------------------------------------- /.github/workflows/qa-main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/sonarqube-scan-action/HEAD/.github/workflows/qa-main.yml -------------------------------------------------------------------------------- /.github/workflows/qa-scripts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/sonarqube-scan-action/HEAD/.github/workflows/qa-scripts.yml -------------------------------------------------------------------------------- /.github/workflows/unit-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/sonarqube-scan-action/HEAD/.github/workflows/unit-tests.yml -------------------------------------------------------------------------------- /.github/workflows/update-tags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/sonarqube-scan-action/HEAD/.github/workflows/update-tags.yml -------------------------------------------------------------------------------- /.github/workflows/version_update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/sonarqube-scan-action/HEAD/.github/workflows/version_update.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .DS_Store 3 | 4 | # Node 5 | node_modules/ 6 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/sonarqube-scan-action/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/sonarqube-scan-action/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/sonarqube-scan-action/HEAD/SECURITY.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/sonarqube-scan-action/HEAD/action.yml -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/sonarqube-scan-action/HEAD/contributing.md -------------------------------------------------------------------------------- /deprecated-c-cpp/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/sonarqube-scan-action/HEAD/deprecated-c-cpp/action.yml -------------------------------------------------------------------------------- /dist/exec-BTlTa8sL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/sonarqube-scan-action/HEAD/dist/exec-BTlTa8sL.js -------------------------------------------------------------------------------- /dist/exec-BTlTa8sL.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/sonarqube-scan-action/HEAD/dist/exec-BTlTa8sL.js.map -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/sonarqube-scan-action/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/sonarqube-scan-action/HEAD/dist/index.js.map -------------------------------------------------------------------------------- /dist/install-build-wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/sonarqube-scan-action/HEAD/dist/install-build-wrapper.js -------------------------------------------------------------------------------- /dist/install-build-wrapper.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/sonarqube-scan-action/HEAD/dist/install-build-wrapper.js.map -------------------------------------------------------------------------------- /images/SQ_Logo_Server_Cloud_Dark_Backgrounds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/sonarqube-scan-action/HEAD/images/SQ_Logo_Server_Cloud_Dark_Backgrounds.png -------------------------------------------------------------------------------- /images/SQ_Logo_Server_Cloud_Light_Backgrounds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/sonarqube-scan-action/HEAD/images/SQ_Logo_Server_Cloud_Light_Backgrounds.png -------------------------------------------------------------------------------- /install-build-wrapper/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/sonarqube-scan-action/HEAD/install-build-wrapper/action.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/sonarqube-scan-action/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/sonarqube-scan-action/HEAD/rollup.config.js -------------------------------------------------------------------------------- /scripts/cert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/sonarqube-scan-action/HEAD/scripts/cert.sh -------------------------------------------------------------------------------- /scripts/configure_paths.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/sonarqube-scan-action/HEAD/scripts/configure_paths.sh -------------------------------------------------------------------------------- /scripts/create_install_path.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/sonarqube-scan-action/HEAD/scripts/create_install_path.sh -------------------------------------------------------------------------------- /scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/sonarqube-scan-action/HEAD/scripts/download.sh -------------------------------------------------------------------------------- /scripts/fetch_latest_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/sonarqube-scan-action/HEAD/scripts/fetch_latest_version.sh -------------------------------------------------------------------------------- /scripts/utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/sonarqube-scan-action/HEAD/scripts/utils.sh -------------------------------------------------------------------------------- /sonar-scanner-version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/sonarqube-scan-action/HEAD/sonar-scanner-version -------------------------------------------------------------------------------- /src/install-build-wrapper/__tests__/utils.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/sonarqube-scan-action/HEAD/src/install-build-wrapper/__tests__/utils.test.js -------------------------------------------------------------------------------- /src/install-build-wrapper/install-build-wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/sonarqube-scan-action/HEAD/src/install-build-wrapper/install-build-wrapper.js -------------------------------------------------------------------------------- /src/install-build-wrapper/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/sonarqube-scan-action/HEAD/src/install-build-wrapper/utils.js -------------------------------------------------------------------------------- /src/main/__tests__/mocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/sonarqube-scan-action/HEAD/src/main/__tests__/mocks.js -------------------------------------------------------------------------------- /src/main/__tests__/sanity-checks.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/sonarqube-scan-action/HEAD/src/main/__tests__/sanity-checks.test.js -------------------------------------------------------------------------------- /src/main/__tests__/utils.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/sonarqube-scan-action/HEAD/src/main/__tests__/utils.test.js -------------------------------------------------------------------------------- /src/main/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/sonarqube-scan-action/HEAD/src/main/index.js -------------------------------------------------------------------------------- /src/main/install-sonar-scanner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/sonarqube-scan-action/HEAD/src/main/install-sonar-scanner.js -------------------------------------------------------------------------------- /src/main/run-sonar-scanner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/sonarqube-scan-action/HEAD/src/main/run-sonar-scanner.js -------------------------------------------------------------------------------- /src/main/sanity-checks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/sonarqube-scan-action/HEAD/src/main/sanity-checks.js -------------------------------------------------------------------------------- /src/main/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/sonarqube-scan-action/HEAD/src/main/utils.js -------------------------------------------------------------------------------- /test/assertFileContains: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/sonarqube-scan-action/HEAD/test/assertFileContains -------------------------------------------------------------------------------- /test/assertFileDoesntExist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/sonarqube-scan-action/HEAD/test/assertFileDoesntExist -------------------------------------------------------------------------------- /test/assertFileExists: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/sonarqube-scan-action/HEAD/test/assertFileExists -------------------------------------------------------------------------------- /test/example-project/sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/sonarqube-scan-action/HEAD/test/example-project/sonar-project.properties -------------------------------------------------------------------------------- /test/example-project/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSource/sonarqube-scan-action/HEAD/test/example-project/src/main.js -------------------------------------------------------------------------------- /test/gradle-project-kotlin/build.gradle.kts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/gradle-project/build.gradle: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/maven-project/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | --------------------------------------------------------------------------------