Try to get version from go.mod file (#118)
* Try to get version from go.mod file * re-build Co-authored-by: Sergey Vilgelm <sergey.vilgelm@ibm.com>
This commit is contained in:
parent
a12ae43dd8
commit
51485a4001
12
dist/post_run/index.js
vendored
12
dist/post_run/index.js
vendored
@ -2237,7 +2237,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|||||||
exports.findLintVersion = exports.stringifyVersion = void 0;
|
exports.findLintVersion = exports.stringifyVersion = void 0;
|
||||||
const core = __importStar(__webpack_require__(470));
|
const core = __importStar(__webpack_require__(470));
|
||||||
const httpm = __importStar(__webpack_require__(539));
|
const httpm = __importStar(__webpack_require__(539));
|
||||||
|
const fs = __importStar(__webpack_require__(747));
|
||||||
const versionRe = /^v(\d+)\.(\d+)(?:\.(\d+))?$/;
|
const versionRe = /^v(\d+)\.(\d+)(?:\.(\d+))?$/;
|
||||||
|
const modVersionRe = /github.com\/golangci\/golangci-lint\s(v.+)/;
|
||||||
const parseVersion = (s) => {
|
const parseVersion = (s) => {
|
||||||
if (s == "latest" || s == "") {
|
if (s == "latest" || s == "") {
|
||||||
return null;
|
return null;
|
||||||
@ -2279,7 +2281,15 @@ const isLessVersion = (a, b) => {
|
|||||||
return a.minor < b.minor;
|
return a.minor < b.minor;
|
||||||
};
|
};
|
||||||
const getRequestedLintVersion = () => {
|
const getRequestedLintVersion = () => {
|
||||||
const requestedLintVersion = core.getInput(`version`);
|
let requestedLintVersion = core.getInput(`version`);
|
||||||
|
if (requestedLintVersion == "") {
|
||||||
|
const content = fs.readFileSync("go.mod", "utf-8");
|
||||||
|
const match = content.match(modVersionRe);
|
||||||
|
if (match) {
|
||||||
|
requestedLintVersion = match[1];
|
||||||
|
core.info(`Found golangci-lint version '${requestedLintVersion}' in go.mod`);
|
||||||
|
}
|
||||||
|
}
|
||||||
const parsedRequestedLintVersion = parseVersion(requestedLintVersion);
|
const parsedRequestedLintVersion = parseVersion(requestedLintVersion);
|
||||||
if (parsedRequestedLintVersion == null) {
|
if (parsedRequestedLintVersion == null) {
|
||||||
return null;
|
return null;
|
||||||
|
12
dist/run/index.js
vendored
12
dist/run/index.js
vendored
@ -2237,7 +2237,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|||||||
exports.findLintVersion = exports.stringifyVersion = void 0;
|
exports.findLintVersion = exports.stringifyVersion = void 0;
|
||||||
const core = __importStar(__webpack_require__(470));
|
const core = __importStar(__webpack_require__(470));
|
||||||
const httpm = __importStar(__webpack_require__(539));
|
const httpm = __importStar(__webpack_require__(539));
|
||||||
|
const fs = __importStar(__webpack_require__(747));
|
||||||
const versionRe = /^v(\d+)\.(\d+)(?:\.(\d+))?$/;
|
const versionRe = /^v(\d+)\.(\d+)(?:\.(\d+))?$/;
|
||||||
|
const modVersionRe = /github.com\/golangci\/golangci-lint\s(v.+)/;
|
||||||
const parseVersion = (s) => {
|
const parseVersion = (s) => {
|
||||||
if (s == "latest" || s == "") {
|
if (s == "latest" || s == "") {
|
||||||
return null;
|
return null;
|
||||||
@ -2279,7 +2281,15 @@ const isLessVersion = (a, b) => {
|
|||||||
return a.minor < b.minor;
|
return a.minor < b.minor;
|
||||||
};
|
};
|
||||||
const getRequestedLintVersion = () => {
|
const getRequestedLintVersion = () => {
|
||||||
const requestedLintVersion = core.getInput(`version`);
|
let requestedLintVersion = core.getInput(`version`);
|
||||||
|
if (requestedLintVersion == "") {
|
||||||
|
const content = fs.readFileSync("go.mod", "utf-8");
|
||||||
|
const match = content.match(modVersionRe);
|
||||||
|
if (match) {
|
||||||
|
requestedLintVersion = match[1];
|
||||||
|
core.info(`Found golangci-lint version '${requestedLintVersion}' in go.mod`);
|
||||||
|
}
|
||||||
|
}
|
||||||
const parsedRequestedLintVersion = parseVersion(requestedLintVersion);
|
const parsedRequestedLintVersion = parseVersion(requestedLintVersion);
|
||||||
if (parsedRequestedLintVersion == null) {
|
if (parsedRequestedLintVersion == null) {
|
||||||
return null;
|
return null;
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
import * as core from "@actions/core"
|
import * as core from "@actions/core"
|
||||||
import * as httpm from "@actions/http-client"
|
import * as httpm from "@actions/http-client"
|
||||||
|
import * as fs from "fs"
|
||||||
|
|
||||||
// TODO: make a class
|
// TODO: make a class
|
||||||
export type Version = {
|
export type Version = {
|
||||||
@ -9,6 +10,7 @@ export type Version = {
|
|||||||
} | null
|
} | null
|
||||||
|
|
||||||
const versionRe = /^v(\d+)\.(\d+)(?:\.(\d+))?$/
|
const versionRe = /^v(\d+)\.(\d+)(?:\.(\d+))?$/
|
||||||
|
const modVersionRe = /github.com\/golangci\/golangci-lint\s(v.+)/
|
||||||
|
|
||||||
const parseVersion = (s: string): Version => {
|
const parseVersion = (s: string): Version => {
|
||||||
if (s == "latest" || s == "") {
|
if (s == "latest" || s == "") {
|
||||||
@ -56,7 +58,17 @@ const isLessVersion = (a: Version, b: Version): boolean => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const getRequestedLintVersion = (): Version => {
|
const getRequestedLintVersion = (): Version => {
|
||||||
const requestedLintVersion = core.getInput(`version`)
|
let requestedLintVersion = core.getInput(`version`)
|
||||||
|
|
||||||
|
if (requestedLintVersion == "") {
|
||||||
|
const content = fs.readFileSync("go.mod", "utf-8")
|
||||||
|
const match = content.match(modVersionRe)
|
||||||
|
if (match) {
|
||||||
|
requestedLintVersion = match[1]
|
||||||
|
core.info(`Found golangci-lint version '${requestedLintVersion}' in go.mod`)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
const parsedRequestedLintVersion = parseVersion(requestedLintVersion)
|
const parsedRequestedLintVersion = parseVersion(requestedLintVersion)
|
||||||
if (parsedRequestedLintVersion == null) {
|
if (parsedRequestedLintVersion == null) {
|
||||||
return null
|
return null
|
||||||
|
Loading…
x
Reference in New Issue
Block a user