Fix misleading version input description (#33)

* Fix misleading version input description

Signed-off-by: Tam Mach <sayboras@yahoo.com>

* Run npm run all

* Update dep to fix CI

* Update dep to fix CI

* Bump to 1.28

* Locked down setup-go version
This commit is contained in:
Tam Mach 2020-07-06 14:17:53 +10:00 committed by GitHub
parent 8870cfbcd4
commit d737e6d962
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 1854 additions and 127 deletions

View File

@ -21,6 +21,6 @@ jobs:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- uses: ./ - uses: ./
with: with:
version: v1.26 version: v1.28
args: --issues-exit-code=0 ./sample/... args: --issues-exit-code=0 ./sample/...
only-new-issues: true only-new-issues: true

View File

@ -4,7 +4,7 @@ description: 'Official golangci-lint action with line-attached annotations for f
author: 'golangci' author: 'golangci'
inputs: inputs:
version: version:
description: 'version of golangci-lint to use in form of v1.2.3' description: 'version of golangci-lint to use in form of v1.2'
required: true required: true
args: args:
description: 'golangci-lint command line arguments' description: 'golangci-lint command line arguments'

978
dist/post_run/index.js vendored

File diff suppressed because it is too large Load Diff

978
dist/run/index.js vendored

File diff suppressed because it is too large Load Diff

19
package-lock.json generated
View File

@ -1809,11 +1809,26 @@
"version": "git+https://github.com/actions/setup-go.git#0f551ac199fb202fc2c3bf3612df37a2f074ef66", "version": "git+https://github.com/actions/setup-go.git#0f551ac199fb202fc2c3bf3612df37a2f074ef66",
"from": "git+https://github.com/actions/setup-go.git", "from": "git+https://github.com/actions/setup-go.git",
"requires": { "requires": {
"@actions/core": "^1.2.2", "@actions/core": "^1.2.3",
"@actions/http-client": "^1.0.6", "@actions/http-client": "^1.0.6",
"@actions/io": "^1.0.2", "@actions/io": "^1.0.2",
"@actions/tool-cache": "^1.3.3", "@actions/tool-cache": "^1.5.5",
"semver": "^6.1.1" "semver": "^6.1.1"
},
"dependencies": {
"@actions/tool-cache": {
"version": "1.5.5",
"resolved": "https://registry.npmjs.org/@actions/tool-cache/-/tool-cache-1.5.5.tgz",
"integrity": "sha512-y/YO37BOaXzOEHpvoGZDLCwvg6XZWQ7Ala4Np4xzrKD1r48mff+K/GAmzXMejnApU7kgqC6lL/aCKTZDCrhdmw==",
"requires": {
"@actions/core": "^1.2.3",
"@actions/exec": "^1.0.0",
"@actions/http-client": "^1.0.8",
"@actions/io": "^1.0.1",
"semver": "^6.1.0",
"uuid": "^3.3.2"
}
}
} }
}, },
"shebang-command": { "shebang-command": {

View File

@ -32,7 +32,7 @@
"@actions/cache": "^0.2.1", "@actions/cache": "^0.2.1",
"@types/semver": "^7.1.0", "@types/semver": "^7.1.0",
"@types/tmp": "^0.2.0", "@types/tmp": "^0.2.0",
"setup-go": "git+https://github.com/actions/setup-go.git", "setup-go": "git+https://github.com/actions/setup-go.git#v2.1.0",
"tmp": "^0.2.1" "tmp": "^0.2.1"
}, },
"devDependencies": { "devDependencies": {