Skip to content

Commit 13990a6

Browse files
committed
Add warning in v3 about upcoming Docker removal in v4
1 parent 66a0baa commit 13990a6

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM sonarsource/sonar-scanner-cli:11.1
22

3-
LABEL version="3.0.0" \
3+
LABEL version="3.1.0" \
44
repository="https://github.com/sonarsource/sonarqube-scan-action" \
55
homepage="https://github.com/sonarsource/sonarqube-scan-action" \
66
maintainer="SonarSource" \

entrypoint.sh

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
set -eo pipefail
44

5+
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."
6+
57
declare -a args=()
68

79
if [[ -z "${SONAR_TOKEN}" ]]; then

0 commit comments

Comments
 (0)