From 3fae1b5ce1e43e63d3f8356bd55de10b135ac10a Mon Sep 17 00:00:00 2001 From: Brock H Caldwell Date: Mon, 10 Nov 2025 16:50:57 -0600 Subject: [PATCH] chore: upgrades sonarqube cli to v11.5 --- Dockerfile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index e97c6b1..c2233c8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,15 +1,15 @@ -FROM sonarsource/sonar-scanner-cli:4 +FROM sonarsource/sonar-scanner-cli:11.5 LABEL "com.github.actions.name"="SonarQube Scan" LABEL "com.github.actions.description"="Scan your code with SonarQube Scanner to detect bugs, vulnerabilities and code smells in more than 25 programming languages." LABEL "com.github.actions.icon"="check" LABEL "com.github.actions.color"="green" -LABEL version="0.0.2" -LABEL repository="https://github.com/kitabisa/sonarqube-action" -LABEL homepage="https://kitabisa.github.io" -LABEL maintainer="dwisiswant0" +LABEL version="0.0.1" +LABEL repository="https://code.caldwell.digital/tools/sonarqube-action" +LABEL homepage="https://caldwell.digital" +LABEL maintainer="brock" + +COPY --chmod=777 entrypoint.sh /entrypoint.sh -COPY entrypoint.sh /entrypoint.sh -RUN chmod +x /entrypoint.sh ENTRYPOINT ["/entrypoint.sh"]