This commit is contained in:
Raphaël 2025-06-19 18:59:55 -04:00 committed by GitHub
commit 7125aebe2f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 35 additions and 0 deletions

3
dist/setup/index.js vendored
View file

@ -99260,6 +99260,9 @@ function run() {
catch (err) {
core.setFailed(err.message);
}
// Explicit process.exit() to not wait for hanging promises,
// see https://github.com/actions/setup-node/issues/878
process.exit();
});
}
exports.run = run;