From 8c154cc36b2637edafbba69aef3d02ab3c7d77a0 Mon Sep 17 00:00:00 2001 From: Leonardo Merlin <966618+leonardomerlin@users.noreply.github.com> Date: Thu, 21 Oct 2021 10:35:20 +0200 Subject: [PATCH] fix: use official sonnar scanner docker image the `newtmitch/docker-sonar-scanner` is not official and not up-to-date with the latest version of sonar. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e493ae1..94a1cd2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM newtmitch/sonar-scanner:4.5 +FROM sonarsource/sonar-scanner-cli:4 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."