Skip to content

Commit

Permalink
Merge pull request #18 from bugst/go1.21
Browse files Browse the repository at this point in the history
Require go1.21
  • Loading branch information
cmaglie authored Nov 20, 2023
2 parents a3091aa + db7c9a3 commit e8b9735
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- uses: actions/checkout@master
- uses: actions/setup-go@v1
with:
go-version: "1.17"
go-version: "1.21"
- name: Build native
run: GOARCH=amd64 go build -v ./...
shell: bash
Expand All @@ -33,7 +33,7 @@ jobs:
- uses: actions/checkout@master
- uses: actions/setup-go@v1
with:
go-version: "1.17"
go-version: "1.21"
- name: Run unit tests with coverage
run: go test -v -race -covermode=atomic -coverprofile=coverage.out ./...
shell: bash
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
module go.bug.st/relaxed-semver

go 1.17
go 1.21

require (
github.com/stretchr/testify v1.7.1
gopkg.in/yaml.v3 v3.0.0
gopkg.in/yaml.v3 v3.0.1
)

require (
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,5 @@ gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
gopkg.in/yaml.v3 v3.0.0 h1:hjy8E9ON/egN1tAYqKb61G10WtihqetD4sz2H+8nIeA=
gopkg.in/yaml.v3 v3.0.0/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=

0 comments on commit e8b9735

Please sign in to comment.