Skip to content

Commit

Permalink
Update support Go version (#37)
Browse files Browse the repository at this point in the history
Updates the minimum supported Go version to go1.19.
  • Loading branch information
j-sv committed Apr 14, 2023
1 parent 07ff637 commit bca6f47
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.17
go-version: 1.19
id: go

- name: Set up gotestsum
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ jobs:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: 1.19
id: go

- name: Run linter
uses: golangci/golangci-lint-action@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/SKF/go-rest-utility

go 1.18
go 1.19

require (
github.com/SKF/go-utility/v2 v2.30.0
Expand Down

0 comments on commit bca6f47

Please sign in to comment.