Update package-lock.json

This commit is contained in:
Filip Richtarik 2024-02-15 13:25:08 +01:00
parent b658e47d0a
commit c8e7c31e3b
4 changed files with 992 additions and 12242 deletions

2
.nvmrc
View file

@ -1 +1 @@
20.10.0 20.11.0

13229
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -15,7 +15,7 @@ export default function getURL(
}; };
const ext = (os: string): string => { const ext = (os: string): string => {
if (os === 'Windows') { if (os === 'windows') {
return 'zip'; return 'zip';
} else { } else {
return 'tar.gz'; return 'tar.gz';

View file

@ -5,6 +5,7 @@ import * as main from './main';
try { try {
await main.run(); await main.run();
} catch (e) { } catch (e) {
// eslint-ignore-next-line
core.setFailed(`Action failed with error ${e.message}`); core.setFailed(`Action failed with error ${e.message}`);
} }
})(); })();