mirror of
https://github.com/actions/setup-java.git
synced 2025-04-21 02:16:45 +00:00
run clean-up tasks in serial
This commit is contained in:
parent
f6a3b974ec
commit
5f3f74c689
2 changed files with 4 additions and 2 deletions
3
dist/cleanup/index.js
vendored
3
dist/cleanup/index.js
vendored
|
@ -6230,7 +6230,8 @@ function ignoreError(promise) {
|
|||
}
|
||||
function run() {
|
||||
return __awaiter(this, void 0, void 0, function* () {
|
||||
yield Promise.all([removePrivateKeyFromKeychain(), ignoreError(saveCache())]);
|
||||
yield removePrivateKeyFromKeychain();
|
||||
yield ignoreError(saveCache());
|
||||
});
|
||||
}
|
||||
exports.run = run;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue