Skip to content

Commit 8b9271f

Browse files
authored
Fix linter on main (cosmos#308)
- fix: force lint workflow to use go 1.17
1 parent 147a71c commit 8b9271f

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/lint.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v3
15+
- uses: actions/setup-go@v2
16+
with:
17+
go-version: 1.17
1518
- name: golangci-lint
1619
uses: golangci/golangci-lint-action@v3.1.0
1720
with:
@@ -25,7 +28,7 @@ jobs:
2528
# args: --issues-exit-code=0
2629

2730
# Optional: show only new issues if it's a pull request. The default value is `false`.
28-
only-new-issues: true
31+
# only-new-issues: true
2932

3033
# Optional: if set to true then the action will use pre-installed Go.
3134
# skip-go-installation: true

CHANGELOG-PENDING.md

+1
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,6 @@ Month, DD, YYYY
3737
- [state,block] [Do save ABCI responses for blocks #285](https://github.com/celestiaorg/optimint/pull/285) [@tzdybal](https://github.com/tzdybal/)
3838
- [conv/abci] [Map LastBlockID.Hash to LastHeaderHash in conversion #303](https://github.com/celestiaorg/optimint/pull/303) [@tzdybal](https://github.com/tzdybal/)
3939
- [chore] [Fix multiple bugs for Ethermint #305](https://github.com/celestiaorg/optimint/pull/305) [@tzdybal](https://github.com/tzdybal/)
40+
- [lint] [Fix linter on main #308](https://github.com/celestiaorg/optimint/pull/308) [@tzdybal](https://github.com/tzdybal/)
4041

4142
- [go package] (Link to PR) Description @username

0 commit comments

Comments
 (0)