Skip to content

Commit ab9ac91

Browse files
authored
Merge pull request #2 from blinklabs-io/chore/ci-correct-go-version
chore(ci): use go 1.19
2 parents f026c54 + e8857ac commit ab9ac91

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/golangci-lint.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
name: lint
1919
strategy:
2020
matrix:
21-
go-version: [1.18.x, 1.19.x]
21+
go-version: [1.19.x]
2222
platform: [ubuntu-latest, macos-latest]
2323
runs-on: ${{ matrix.platform }}
2424
steps:
@@ -30,8 +30,7 @@ jobs:
3030
uses: golangci/golangci-lint-action@v3
3131
with:
3232
version: v1.50.1 # current version at time of commit
33-
# Optional: golangci-lint command line arguments.
34-
# args: --issues-exit-code=0
33+
args: --timeout=10m
3534
only-new-issues: true
3635
- name: go-test
3736
run: go test ./...

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
- uses: actions/checkout@v3
5151
- uses: actions/setup-go@v3
5252
with:
53-
go-version: 1.18
53+
go-version: 1.19
5454
- name: Build binary
5555
run: GOOS=${{ matrix.os }} GOARCH=${{ matrix.arch }} make build
5656
- name: Upload release asset

0 commit comments

Comments
 (0)