Skip to content

Commit

Permalink
fix: golang version
Browse files Browse the repository at this point in the history
  • Loading branch information
lmendes86 committed Sep 6, 2024
1 parent 1900309 commit 61c5d92
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.20', '1.21' ]
go-version: [ '1.20', '1.21' , '1.22' ,]
steps:
- uses: actions/checkout@v4
- name: Set up Go
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
go-version: '1.23'

- name: Go get
run: go get -t ./...
Expand All @@ -34,7 +34,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
go-version: '1.23'

- name: Go get
run: go get -t ./...
Expand Down
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ go:
- 1.16.x
- 1.17
- 1.20
- 1.23
install:
- go get -t ./...
- ./scripts/install-checks.sh
Expand Down

0 comments on commit 61c5d92

Please sign in to comment.