mirror of
https://github.com/codecov/codecov-action.git
synced 2025-12-08 08:06:27 +00:00
Fix lint errors
This commit is contained in:
@@ -31,9 +31,9 @@ const verify = async (filename: string) => {
|
||||
|
||||
// Verify shasum
|
||||
const verified = await openpgp.verify({
|
||||
message: await openpgp.createMessage({ text: shasum }),
|
||||
signature: await openpgp.readSignature({ armoredSignature: shaSig }),
|
||||
verificationKeys: await openpgp.readKeys({ armoredKeys: publicKeyArmored }),
|
||||
message: await openpgp.createMessage({text: shasum}),
|
||||
signature: await openpgp.readSignature({armoredSignature: shaSig}),
|
||||
verificationKeys: await openpgp.readKeys({armoredKeys: publicKeyArmored}),
|
||||
});
|
||||
const valid = await verified.signatures[0].verified;
|
||||
if (valid) {
|
||||
|
||||
Reference in New Issue
Block a user