Update package dependencies and scripts; add 'shx' for shell command execution in package.json
Some checks failed
Need fix to Issue / main (push) Has been cancelled
Internal - Main - Continuous Integration / ci (push) Failing after 0s
Internal - Main - Continuous Integration / release (push) Has been cancelled
Mark stale issues and pull requests / main (push) Failing after 0s

This commit is contained in:
2025-08-03 04:01:10 +07:00
parent 1372c61353
commit 00ad5b1134
4 changed files with 259 additions and 11 deletions

5
dist/index.js generated vendored
View File

@@ -33238,6 +33238,7 @@ var InputNames;
InputNames["ComposeVersion"] = "compose-version";
InputNames["GithubToken"] = "github-token";
InputNames["ServiceLogLevel"] = "services-log-level";
InputNames["DownOnSuccess"] = "down-on-success";
})(InputNames || (exports.InputNames = InputNames = {}));
exports.COMPOSE_VERSION_LATEST = "latest";
class InputService {
@@ -33253,6 +33254,7 @@ class InputService {
composeVersion: this.getComposeVersion(),
githubToken: this.getGithubToken(),
serviceLogLevel: this.getServiceLogLevel(),
downOnSuccess: this.getDownOnSuccess(),
};
}
getDockerFlags() {
@@ -33315,6 +33317,9 @@ class InputService {
}
return configuredLevel || logger_service_1.LogLevel.Debug;
}
getDownOnSuccess() {
return (0, core_1.getInput)(InputNames.DownOnSuccess, { required: false }) === "true";
}
}
exports.InputService = InputService;