mirror of
https://github.com/actions/setup-java.git
synced 2026-07-08 14:21:50 +00:00
chore: regenerate dist files
This commit is contained in:
parent
2aeafefc1c
commit
45cdfed036
6
dist/cleanup/index.js
vendored
6
dist/cleanup/index.js
vendored
@ -52366,6 +52366,12 @@ function verifyPackageSignature(archivePath, signatureUrl, publicKeyContent) {
|
|||||||
gpgHome = fs.mkdtempSync(path.join(util.getTempDir(), 'verify-signature-gpg-home-'));
|
gpgHome = fs.mkdtempSync(path.join(util.getTempDir(), 'verify-signature-gpg-home-'));
|
||||||
}
|
}
|
||||||
catch (error) {
|
catch (error) {
|
||||||
|
try {
|
||||||
|
yield io.rmRF(signaturePath);
|
||||||
|
}
|
||||||
|
catch (_a) {
|
||||||
|
// ignore cleanup failures
|
||||||
|
}
|
||||||
throw new Error(`Failed to create temporary GPG home directory for signature verification: ${error.message}`);
|
throw new Error(`Failed to create temporary GPG home directory for signature verification: ${error.message}`);
|
||||||
}
|
}
|
||||||
const env = Object.assign(Object.assign({}, process.env), { GNUPGHOME: gpgHome });
|
const env = Object.assign(Object.assign({}, process.env), { GNUPGHOME: gpgHome });
|
||||||
|
|||||||
6
dist/setup/index.js
vendored
6
dist/setup/index.js
vendored
@ -81146,6 +81146,12 @@ function verifyPackageSignature(archivePath, signatureUrl, publicKeyContent) {
|
|||||||
gpgHome = fs.mkdtempSync(path.join(util.getTempDir(), 'verify-signature-gpg-home-'));
|
gpgHome = fs.mkdtempSync(path.join(util.getTempDir(), 'verify-signature-gpg-home-'));
|
||||||
}
|
}
|
||||||
catch (error) {
|
catch (error) {
|
||||||
|
try {
|
||||||
|
yield io.rmRF(signaturePath);
|
||||||
|
}
|
||||||
|
catch (_a) {
|
||||||
|
// ignore cleanup failures
|
||||||
|
}
|
||||||
throw new Error(`Failed to create temporary GPG home directory for signature verification: ${error.message}`);
|
throw new Error(`Failed to create temporary GPG home directory for signature verification: ${error.message}`);
|
||||||
}
|
}
|
||||||
const env = Object.assign(Object.assign({}, process.env), { GNUPGHOME: gpgHome });
|
const env = Object.assign(Object.assign({}, process.env), { GNUPGHOME: gpgHome });
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user