Skip to content

Commit 263a218

Browse files
author
Danny McCormick
committed
Temporarily remove installation so it can be reviewed
1 parent cef575c commit 263a218

File tree

4 files changed

+4
-268
lines changed

4 files changed

+4
-268
lines changed

lib/installer.js

Lines changed: 0 additions & 134 deletions
This file was deleted.

lib/setup-go.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
1616
};
1717
Object.defineProperty(exports, "__esModule", { value: true });
1818
const core = __importStar(require("@actions/core"));
19-
const installer = __importStar(require("./installer"));
19+
// import * as installer from './installer';
2020
function run() {
2121
return __awaiter(this, void 0, void 0, function* () {
2222
try {
@@ -26,7 +26,7 @@ function run() {
2626
//
2727
const version = core.getInput('version');
2828
if (version) {
29-
yield installer.getGo(version);
29+
// await installer.getGo(version);
3030
}
3131
// TODO: setup proxy from runner proxy config
3232
// TODO: problem matchers registered

src/installer.ts

Lines changed: 0 additions & 130 deletions
This file was deleted.

src/setup-go.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import * as core from '@actions/core';
2-
import * as installer from './installer';
2+
// import * as installer from './installer';
33

44
async function run() {
55
try {
@@ -9,7 +9,7 @@ async function run() {
99
//
1010
const version = core.getInput('version');
1111
if (version) {
12-
await installer.getGo(version);
12+
// await installer.getGo(version);
1313
}
1414

1515
// TODO: setup proxy from runner proxy config

0 commit comments

Comments
 (0)