mirror of
https://github.com/SonarSource/sonarqube-scan-action.git
synced 2025-12-12 17:31:15 +00:00
SQSCANGHA-112 Extract installation step and other fixes
This commit is contained in:
parent
68224d38f6
commit
e143f7b2a5
6 changed files with 182 additions and 174 deletions
195
dist/index.js
vendored
195
dist/index.js
vendored
|
|
@ -29844,6 +29844,92 @@ function requireToolCache () {
|
||||||
|
|
||||||
var toolCacheExports = requireToolCache();
|
var toolCacheExports = requireToolCache();
|
||||||
|
|
||||||
|
const platformFlavor = {
|
||||||
|
linux: {
|
||||||
|
x64: "linux-x64",
|
||||||
|
arm64: "linux-aarch64",
|
||||||
|
},
|
||||||
|
win32: {
|
||||||
|
x64: "windows-x64",
|
||||||
|
},
|
||||||
|
darwin: {
|
||||||
|
x64: "macosx-x64",
|
||||||
|
arm64: "macosx-aarch64",
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
function getPlatformFlavor(platform, arch) {
|
||||||
|
const flavor = platformFlavor[platform]?.[arch];
|
||||||
|
|
||||||
|
if (!flavor) {
|
||||||
|
throw new Error(`Platform ${platform} ${arch} not supported`);
|
||||||
|
}
|
||||||
|
|
||||||
|
return flavor;
|
||||||
|
}
|
||||||
|
|
||||||
|
function getScannerDownloadURL({
|
||||||
|
scannerBinariesUrl,
|
||||||
|
scannerVersion,
|
||||||
|
flavor,
|
||||||
|
}) {
|
||||||
|
const trimURL = scannerBinariesUrl.replace(/\/$/, "");
|
||||||
|
return `${trimURL}/sonar-scanner-cli-${scannerVersion}-${flavor}.zip`;
|
||||||
|
}
|
||||||
|
|
||||||
|
const scannerDirName = (version, flavor) =>
|
||||||
|
`sonar-scanner-${version}-${flavor}`;
|
||||||
|
|
||||||
|
const TOOLNAME = "sonar-scanner-cli";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Download the Sonar Scanner CLI for the current environment and cache it.
|
||||||
|
*/
|
||||||
|
async function installSonarScanner({
|
||||||
|
scannerVersion,
|
||||||
|
scannerBinariesUrl,
|
||||||
|
}) {
|
||||||
|
const flavor = getPlatformFlavor(require$$0.platform(), require$$0.arch());
|
||||||
|
|
||||||
|
// Check if tool is already cached
|
||||||
|
let toolDir = toolCacheExports.find(TOOLNAME, scannerVersion, flavor);
|
||||||
|
|
||||||
|
if (!toolDir) {
|
||||||
|
console.log(
|
||||||
|
`Installing Sonar Scanner CLI ${scannerVersion} for ${flavor}...`
|
||||||
|
);
|
||||||
|
|
||||||
|
const downloadUrl = getScannerDownloadURL({
|
||||||
|
scannerBinariesUrl,
|
||||||
|
scannerVersion,
|
||||||
|
flavor,
|
||||||
|
});
|
||||||
|
|
||||||
|
console.log(`Downloading from: ${downloadUrl}`);
|
||||||
|
|
||||||
|
const downloadPath = await toolCacheExports.downloadTool(downloadUrl);
|
||||||
|
const extractedPath = await toolCacheExports.extractZip(downloadPath);
|
||||||
|
|
||||||
|
// Find the actual scanner directory inside the extracted folder
|
||||||
|
const scannerPath = path.join(
|
||||||
|
extractedPath,
|
||||||
|
scannerDirName(scannerVersion, flavor)
|
||||||
|
);
|
||||||
|
|
||||||
|
toolDir = await toolCacheExports.cacheDir(scannerPath, TOOLNAME, scannerVersion, flavor);
|
||||||
|
|
||||||
|
console.log(`Sonar Scanner CLI cached to: ${toolDir}`);
|
||||||
|
} else {
|
||||||
|
console.log(`Using cached Sonar Scanner CLI from: ${toolDir}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Add the bin directory to PATH
|
||||||
|
const binDir = path.join(toolDir, "bin");
|
||||||
|
coreExports.addPath(binDir);
|
||||||
|
|
||||||
|
return toolDir;
|
||||||
|
}
|
||||||
|
|
||||||
var execExports = requireExec();
|
var execExports = requireExec();
|
||||||
|
|
||||||
function parseArgsStringToArgv(value, env, file) {
|
function parseArgsStringToArgv(value, env, file) {
|
||||||
|
|
@ -30029,8 +30115,8 @@ function validateScannerVersion(version) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function checkSonarToken(core) {
|
function checkSonarToken(core, sonarToken) {
|
||||||
if (!process.env.SONAR_TOKEN) {
|
{
|
||||||
core.warning(
|
core.warning(
|
||||||
"Running this GitHub Action without SONAR_TOKEN is not recommended"
|
"Running this GitHub Action without SONAR_TOKEN is not recommended"
|
||||||
);
|
);
|
||||||
|
|
@ -30058,44 +30144,6 @@ function checkGradleProject(core, projectBaseDir) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const platformFlavor = {
|
|
||||||
linux: {
|
|
||||||
x64: "linux-x64",
|
|
||||||
arm64: "linux-aarch64",
|
|
||||||
},
|
|
||||||
win32: {
|
|
||||||
x64: "windows-x64",
|
|
||||||
},
|
|
||||||
darwin: {
|
|
||||||
x64: "macosx-x64",
|
|
||||||
arm64: "macosx-aarch64",
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
function getPlatformFlavor(platform, arch) {
|
|
||||||
const flavor = platformFlavor[platform]?.[arch];
|
|
||||||
|
|
||||||
if (!flavor) {
|
|
||||||
throw new Error(`Platform ${platform} ${arch} not supported`);
|
|
||||||
}
|
|
||||||
|
|
||||||
return flavor;
|
|
||||||
}
|
|
||||||
|
|
||||||
function getScannerDownloadURL({
|
|
||||||
scannerBinariesUrl,
|
|
||||||
scannerVersion,
|
|
||||||
flavor,
|
|
||||||
}) {
|
|
||||||
const trimURL = scannerBinariesUrl.replace(/\/$/, "");
|
|
||||||
return `${trimURL}/sonar-scanner-cli-${scannerVersion}-${flavor}.zip`;
|
|
||||||
}
|
|
||||||
|
|
||||||
const scannerDirName = (version, flavor) =>
|
|
||||||
`sonar-scanner-${version}-${flavor}`;
|
|
||||||
|
|
||||||
const TOOLNAME = "sonar-scanner-cli";
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Inputs are defined in action.yml
|
* Inputs are defined in action.yml
|
||||||
*/
|
*/
|
||||||
|
|
@ -30108,13 +30156,20 @@ function getInputs() {
|
||||||
return { args, projectBaseDir, scannerBinariesUrl, scannerVersion };
|
return { args, projectBaseDir, scannerBinariesUrl, scannerVersion };
|
||||||
}
|
}
|
||||||
|
|
||||||
function getRunnerEnv() {
|
/**
|
||||||
|
* These RUNNER env variables come from GitHub by default.
|
||||||
|
* See https://docs.github.com/en/actions/reference/workflows-and-actions/variables#default-environment-variables
|
||||||
|
*
|
||||||
|
* The others are optional env variables provided by the user of the action
|
||||||
|
*/
|
||||||
|
function getEnvVariables() {
|
||||||
return {
|
return {
|
||||||
RUNNER_OS: process.env.RUNNER_OS,
|
|
||||||
SONARCLOUD_URL: process.env.SONARCLOUD_URL,
|
|
||||||
RUNNER_DEBUG: process.env.RUNNER_DEBUG,
|
RUNNER_DEBUG: process.env.RUNNER_DEBUG,
|
||||||
SONAR_ROOT_CERT: process.env.SONAR_ROOT_CERT,
|
RUNNER_OS: process.env.RUNNER_OS,
|
||||||
RUNNER_TEMP: process.env.RUNNER_TEMP,
|
RUNNER_TEMP: process.env.RUNNER_TEMP,
|
||||||
|
SONAR_ROOT_CERT: process.env.SONAR_ROOT_CERT,
|
||||||
|
SONARCLOUD_URL: process.env.SONARCLOUD_URL,
|
||||||
|
SONAR_TOKEN: process.env.SONAR_TOKEN,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -30132,64 +30187,20 @@ function runSanityChecks(inputs) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async function installSonarScannerCLI({ scannerVersion, scannerBinariesUrl }) {
|
|
||||||
const flavor = getPlatformFlavor(require$$0.platform(), require$$0.arch());
|
|
||||||
|
|
||||||
// Check if tool is already cached
|
|
||||||
let toolDir = toolCacheExports.find(TOOLNAME, scannerVersion, flavor);
|
|
||||||
|
|
||||||
if (!toolDir) {
|
|
||||||
console.log(
|
|
||||||
`Installing Sonar Scanner CLI ${scannerVersion} for ${flavor}...`
|
|
||||||
);
|
|
||||||
|
|
||||||
const downloadUrl = getScannerDownloadURL({
|
|
||||||
scannerBinariesUrl,
|
|
||||||
scannerVersion,
|
|
||||||
flavor,
|
|
||||||
});
|
|
||||||
|
|
||||||
console.log(`Downloading from: ${downloadUrl}`);
|
|
||||||
|
|
||||||
const downloadPath = await toolCacheExports.downloadTool(downloadUrl);
|
|
||||||
const extractedPath = await toolCacheExports.extractZip(downloadPath);
|
|
||||||
|
|
||||||
// Find the actual scanner directory inside the extracted folder
|
|
||||||
const scannerPath = path.join(
|
|
||||||
extractedPath,
|
|
||||||
scannerDirName(scannerVersion, flavor)
|
|
||||||
);
|
|
||||||
|
|
||||||
toolDir = await toolCacheExports.cacheDir(scannerPath, TOOLNAME, scannerVersion, flavor);
|
|
||||||
|
|
||||||
console.log(`Sonar Scanner CLI cached to: ${toolDir}`);
|
|
||||||
} else {
|
|
||||||
console.log(`Using cached Sonar Scanner CLI from: ${toolDir}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Add the bin directory to PATH
|
|
||||||
const binDir = path.join(toolDir, "bin");
|
|
||||||
coreExports.addPath(binDir);
|
|
||||||
|
|
||||||
return toolDir;
|
|
||||||
}
|
|
||||||
|
|
||||||
async function run() {
|
async function run() {
|
||||||
try {
|
try {
|
||||||
const { args, projectBaseDir, scannerVersion, scannerBinariesUrl } =
|
const { args, projectBaseDir, scannerVersion, scannerBinariesUrl } =
|
||||||
getInputs();
|
getInputs();
|
||||||
|
const runnerEnv = getEnvVariables();
|
||||||
|
const { sonarToken } = runnerEnv;
|
||||||
|
|
||||||
// Run sanity checks first
|
runSanityChecks({ projectBaseDir, scannerVersion, sonarToken });
|
||||||
runSanityChecks({ projectBaseDir, scannerVersion });
|
|
||||||
|
|
||||||
// Install Sonar Scanner CLI using @actions/tool-cache
|
const scannerDir = await installSonarScanner({
|
||||||
const scannerDir = await installSonarScannerCLI({
|
|
||||||
scannerVersion,
|
scannerVersion,
|
||||||
scannerBinariesUrl,
|
scannerBinariesUrl,
|
||||||
});
|
});
|
||||||
|
|
||||||
// Run the sonar scanner
|
|
||||||
const runnerEnv = getRunnerEnv();
|
|
||||||
await runSonarScanner(args, projectBaseDir, scannerDir, runnerEnv);
|
await runSonarScanner(args, projectBaseDir, scannerDir, runnerEnv);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
coreExports.setFailed(`Action failed: ${error.message}`);
|
coreExports.setFailed(`Action failed: ${error.message}`);
|
||||||
|
|
|
||||||
2
dist/index.js.map
vendored
2
dist/index.js.map
vendored
File diff suppressed because one or more lines are too long
|
|
@ -63,9 +63,6 @@ describe("validateScannerVersion", () => {
|
||||||
|
|
||||||
describe("checkSonarToken", () => {
|
describe("checkSonarToken", () => {
|
||||||
it("calls core.warning when SONAR_TOKEN is not set", () => {
|
it("calls core.warning when SONAR_TOKEN is not set", () => {
|
||||||
const originalToken = process.env.SONAR_TOKEN;
|
|
||||||
delete process.env.SONAR_TOKEN;
|
|
||||||
|
|
||||||
const warning = mock.fn();
|
const warning = mock.fn();
|
||||||
|
|
||||||
checkSonarToken(mockCore({ warning }));
|
checkSonarToken(mockCore({ warning }));
|
||||||
|
|
@ -75,27 +72,14 @@ describe("checkSonarToken", () => {
|
||||||
warning.mock.calls[0].arguments[0],
|
warning.mock.calls[0].arguments[0],
|
||||||
"Running this GitHub Action without SONAR_TOKEN is not recommended"
|
"Running this GitHub Action without SONAR_TOKEN is not recommended"
|
||||||
);
|
);
|
||||||
|
|
||||||
if (originalToken) {
|
|
||||||
process.env.SONAR_TOKEN = originalToken;
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
|
|
||||||
it("does not call core.warning when SONAR_TOKEN is set", () => {
|
it("does not call core.warning when SONAR_TOKEN is set", () => {
|
||||||
const originalToken = process.env.SONAR_TOKEN;
|
|
||||||
process.env.SONAR_TOKEN = "test-token";
|
|
||||||
|
|
||||||
const warning = mock.fn();
|
const warning = mock.fn();
|
||||||
|
|
||||||
checkSonarToken(mockCore({ warning }));
|
checkSonarToken(mockCore({ warning }), "test-token");
|
||||||
|
|
||||||
assert.equal(warning.mock.calls.length, 0);
|
assert.equal(warning.mock.calls.length, 0);
|
||||||
|
|
||||||
if (originalToken) {
|
|
||||||
process.env.SONAR_TOKEN = originalToken;
|
|
||||||
} else {
|
|
||||||
delete process.env.SONAR_TOKEN;
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
||||||
78
src/index.js
78
src/index.js
|
|
@ -1,7 +1,5 @@
|
||||||
import * as core from "@actions/core";
|
import * as core from "@actions/core";
|
||||||
import * as tc from "@actions/tool-cache";
|
import { installSonarScanner } from "./install-sonar-scanner";
|
||||||
import * as os from "os";
|
|
||||||
import * as path from "path";
|
|
||||||
import { runSonarScanner } from "./run-sonar-scanner";
|
import { runSonarScanner } from "./run-sonar-scanner";
|
||||||
import {
|
import {
|
||||||
checkGradleProject,
|
checkGradleProject,
|
||||||
|
|
@ -9,13 +7,6 @@ import {
|
||||||
checkSonarToken,
|
checkSonarToken,
|
||||||
validateScannerVersion,
|
validateScannerVersion,
|
||||||
} from "./sanity-checks";
|
} from "./sanity-checks";
|
||||||
import {
|
|
||||||
getPlatformFlavor,
|
|
||||||
getScannerDownloadURL,
|
|
||||||
scannerDirName,
|
|
||||||
} from "./utils";
|
|
||||||
|
|
||||||
const TOOLNAME = "sonar-scanner-cli";
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Inputs are defined in action.yml
|
* Inputs are defined in action.yml
|
||||||
|
|
@ -29,13 +20,20 @@ function getInputs() {
|
||||||
return { args, projectBaseDir, scannerBinariesUrl, scannerVersion };
|
return { args, projectBaseDir, scannerBinariesUrl, scannerVersion };
|
||||||
}
|
}
|
||||||
|
|
||||||
function getRunnerEnv() {
|
/**
|
||||||
|
* These RUNNER env variables come from GitHub by default.
|
||||||
|
* See https://docs.github.com/en/actions/reference/workflows-and-actions/variables#default-environment-variables
|
||||||
|
*
|
||||||
|
* The others are optional env variables provided by the user of the action
|
||||||
|
*/
|
||||||
|
function getEnvVariables() {
|
||||||
return {
|
return {
|
||||||
RUNNER_OS: process.env.RUNNER_OS,
|
|
||||||
SONARCLOUD_URL: process.env.SONARCLOUD_URL,
|
|
||||||
RUNNER_DEBUG: process.env.RUNNER_DEBUG,
|
RUNNER_DEBUG: process.env.RUNNER_DEBUG,
|
||||||
SONAR_ROOT_CERT: process.env.SONAR_ROOT_CERT,
|
RUNNER_OS: process.env.RUNNER_OS,
|
||||||
RUNNER_TEMP: process.env.RUNNER_TEMP,
|
RUNNER_TEMP: process.env.RUNNER_TEMP,
|
||||||
|
SONAR_ROOT_CERT: process.env.SONAR_ROOT_CERT,
|
||||||
|
SONARCLOUD_URL: process.env.SONARCLOUD_URL,
|
||||||
|
SONAR_TOKEN: process.env.SONAR_TOKEN,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -53,64 +51,20 @@ function runSanityChecks(inputs) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async function installSonarScannerCLI({ scannerVersion, scannerBinariesUrl }) {
|
|
||||||
const flavor = getPlatformFlavor(os.platform(), os.arch());
|
|
||||||
|
|
||||||
// Check if tool is already cached
|
|
||||||
let toolDir = tc.find(TOOLNAME, scannerVersion, flavor);
|
|
||||||
|
|
||||||
if (!toolDir) {
|
|
||||||
console.log(
|
|
||||||
`Installing Sonar Scanner CLI ${scannerVersion} for ${flavor}...`
|
|
||||||
);
|
|
||||||
|
|
||||||
const downloadUrl = getScannerDownloadURL({
|
|
||||||
scannerBinariesUrl,
|
|
||||||
scannerVersion,
|
|
||||||
flavor,
|
|
||||||
});
|
|
||||||
|
|
||||||
console.log(`Downloading from: ${downloadUrl}`);
|
|
||||||
|
|
||||||
const downloadPath = await tc.downloadTool(downloadUrl);
|
|
||||||
const extractedPath = await tc.extractZip(downloadPath);
|
|
||||||
|
|
||||||
// Find the actual scanner directory inside the extracted folder
|
|
||||||
const scannerPath = path.join(
|
|
||||||
extractedPath,
|
|
||||||
scannerDirName(scannerVersion, flavor)
|
|
||||||
);
|
|
||||||
|
|
||||||
toolDir = await tc.cacheDir(scannerPath, TOOLNAME, scannerVersion, flavor);
|
|
||||||
|
|
||||||
console.log(`Sonar Scanner CLI cached to: ${toolDir}`);
|
|
||||||
} else {
|
|
||||||
console.log(`Using cached Sonar Scanner CLI from: ${toolDir}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Add the bin directory to PATH
|
|
||||||
const binDir = path.join(toolDir, "bin");
|
|
||||||
core.addPath(binDir);
|
|
||||||
|
|
||||||
return toolDir;
|
|
||||||
}
|
|
||||||
|
|
||||||
async function run() {
|
async function run() {
|
||||||
try {
|
try {
|
||||||
const { args, projectBaseDir, scannerVersion, scannerBinariesUrl } =
|
const { args, projectBaseDir, scannerVersion, scannerBinariesUrl } =
|
||||||
getInputs();
|
getInputs();
|
||||||
|
const runnerEnv = getEnvVariables();
|
||||||
|
const { sonarToken } = runnerEnv;
|
||||||
|
|
||||||
// Run sanity checks first
|
runSanityChecks({ projectBaseDir, scannerVersion, sonarToken });
|
||||||
runSanityChecks({ projectBaseDir, scannerVersion });
|
|
||||||
|
|
||||||
// Install Sonar Scanner CLI using @actions/tool-cache
|
const scannerDir = await installSonarScanner({
|
||||||
const scannerDir = await installSonarScannerCLI({
|
|
||||||
scannerVersion,
|
scannerVersion,
|
||||||
scannerBinariesUrl,
|
scannerBinariesUrl,
|
||||||
});
|
});
|
||||||
|
|
||||||
// Run the sonar scanner
|
|
||||||
const runnerEnv = getRunnerEnv();
|
|
||||||
await runSonarScanner(args, projectBaseDir, scannerDir, runnerEnv);
|
await runSonarScanner(args, projectBaseDir, scannerDir, runnerEnv);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
core.setFailed(`Action failed: ${error.message}`);
|
core.setFailed(`Action failed: ${error.message}`);
|
||||||
|
|
|
||||||
59
src/install-sonar-scanner.js
Normal file
59
src/install-sonar-scanner.js
Normal file
|
|
@ -0,0 +1,59 @@
|
||||||
|
import * as core from "@actions/core";
|
||||||
|
import * as tc from "@actions/tool-cache";
|
||||||
|
import * as os from "os";
|
||||||
|
import * as path from "path";
|
||||||
|
import {
|
||||||
|
getPlatformFlavor,
|
||||||
|
getScannerDownloadURL,
|
||||||
|
scannerDirName,
|
||||||
|
} from "./utils";
|
||||||
|
|
||||||
|
const TOOLNAME = "sonar-scanner-cli";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Download the Sonar Scanner CLI for the current environment and cache it.
|
||||||
|
*/
|
||||||
|
export async function installSonarScanner({
|
||||||
|
scannerVersion,
|
||||||
|
scannerBinariesUrl,
|
||||||
|
}) {
|
||||||
|
const flavor = getPlatformFlavor(os.platform(), os.arch());
|
||||||
|
|
||||||
|
// Check if tool is already cached
|
||||||
|
let toolDir = tc.find(TOOLNAME, scannerVersion, flavor);
|
||||||
|
|
||||||
|
if (!toolDir) {
|
||||||
|
console.log(
|
||||||
|
`Installing Sonar Scanner CLI ${scannerVersion} for ${flavor}...`
|
||||||
|
);
|
||||||
|
|
||||||
|
const downloadUrl = getScannerDownloadURL({
|
||||||
|
scannerBinariesUrl,
|
||||||
|
scannerVersion,
|
||||||
|
flavor,
|
||||||
|
});
|
||||||
|
|
||||||
|
console.log(`Downloading from: ${downloadUrl}`);
|
||||||
|
|
||||||
|
const downloadPath = await tc.downloadTool(downloadUrl);
|
||||||
|
const extractedPath = await tc.extractZip(downloadPath);
|
||||||
|
|
||||||
|
// Find the actual scanner directory inside the extracted folder
|
||||||
|
const scannerPath = path.join(
|
||||||
|
extractedPath,
|
||||||
|
scannerDirName(scannerVersion, flavor)
|
||||||
|
);
|
||||||
|
|
||||||
|
toolDir = await tc.cacheDir(scannerPath, TOOLNAME, scannerVersion, flavor);
|
||||||
|
|
||||||
|
console.log(`Sonar Scanner CLI cached to: ${toolDir}`);
|
||||||
|
} else {
|
||||||
|
console.log(`Using cached Sonar Scanner CLI from: ${toolDir}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Add the bin directory to PATH
|
||||||
|
const binDir = path.join(toolDir, "bin");
|
||||||
|
core.addPath(binDir);
|
||||||
|
|
||||||
|
return toolDir;
|
||||||
|
}
|
||||||
|
|
@ -14,8 +14,8 @@ export function validateScannerVersion(version) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export function checkSonarToken(core) {
|
export function checkSonarToken(core, sonarToken) {
|
||||||
if (!process.env.SONAR_TOKEN) {
|
if (!sonarToken) {
|
||||||
core.warning(
|
core.warning(
|
||||||
"Running this GitHub Action without SONAR_TOKEN is not recommended"
|
"Running this GitHub Action without SONAR_TOKEN is not recommended"
|
||||||
);
|
);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue