From 13990a695682794b53148ff9f6a8b6e22e43955e Mon Sep 17 00:00:00 2001 From: Antonio Aversa Date: Thu, 7 Nov 2024 14:13:56 +0100 Subject: [PATCH] Add warning in v3 about upcoming Docker removal in v4 --- Dockerfile | 2 +- entrypoint.sh | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index cf151b3..dd81624 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM sonarsource/sonar-scanner-cli:11.1 -LABEL version="3.0.0" \ +LABEL version="3.1.0" \ repository="https://github.com/sonarsource/sonarqube-scan-action" \ homepage="https://github.com/sonarsource/sonarqube-scan-action" \ maintainer="SonarSource" \ diff --git a/entrypoint.sh b/entrypoint.sh index 790ab2a..d40ba60 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -2,6 +2,8 @@ set -eo pipefail +echo "::warning title=Docker removed in the next major version::Users on the master branch of this GitHub action will be upgraded automatically on December 9th to its next major version, which replaces Docker with a composite action, executing in the runner environment. Self-hosted runners analyzing JS/TS code against SonarQube 10.2 and below will need to have Node JS installed." + declare -a args=() if [[ -z "${SONAR_TOKEN}" ]]; then