Merge branch 'main' into rvermeulen/extend-init-complete-status-report

Signed-off-by: Remco Vermeulen <rvermeulen@github.com>
This commit is contained in:
Remco Vermeulen 2024-08-02 15:12:59 -07:00
commit 0f24d46599
32 changed files with 401 additions and 373 deletions

4
lib/init-action.js generated
View file

@ -210,6 +210,10 @@ async function run() {
core.exportVariable("GOFLAGS", goFlags);
core.warning("Passing the GOFLAGS env parameter to the init action is deprecated. Please move this to the analyze action.");
}
if (config.languages.includes(languages_1.Language.swift) &&
process.platform === "linux") {
logger.warning(`Swift analysis on Ubuntu runner images is no longer supported. Please migrate to a macOS runner if this affects you.`);
}
if (config.languages.includes(languages_1.Language.go) &&
process.platform === "linux") {
try {

File diff suppressed because one or more lines are too long