Update node_modules

This commit is contained in:
CrazyMax
2020-01-17 09:36:42 +01:00
parent 0249173616
commit 999f6ae5af
787 changed files with 76078 additions and 436 deletions

View File

@@ -1,10 +1,16 @@
import * as installer from './installer';
import * as fs from 'fs';
import * as os from 'os';
import * as core from '@actions/core';
import * as exec from '@actions/exec';
export async function run(silent?: boolean) {
try {
if (os.platform() == 'darwin') {
core.setFailed('Not supported on darwin platform');
return;
}
const version = core.getInput('version') || 'latest';
const file = core.getInput('file', {required: true});
const args = core.getInput('args');