Skip to content

Commit e8b9735

Browse files
authored
Merge pull request #18 from bugst/go1.21
Require go1.21
2 parents a3091aa + db7c9a3 commit e8b9735

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

Diff for: .github/workflows/test.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: actions/checkout@master
1919
- uses: actions/setup-go@v1
2020
with:
21-
go-version: "1.17"
21+
go-version: "1.21"
2222
- name: Build native
2323
run: GOARCH=amd64 go build -v ./...
2424
shell: bash
@@ -33,7 +33,7 @@ jobs:
3333
- uses: actions/checkout@master
3434
- uses: actions/setup-go@v1
3535
with:
36-
go-version: "1.17"
36+
go-version: "1.21"
3737
- name: Run unit tests with coverage
3838
run: go test -v -race -covermode=atomic -coverprofile=coverage.out ./...
3939
shell: bash

Diff for: go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
module go.bug.st/relaxed-semver
22

3-
go 1.17
3+
go 1.21
44

55
require (
66
github.com/stretchr/testify v1.7.1
7-
gopkg.in/yaml.v3 v3.0.0
7+
gopkg.in/yaml.v3 v3.0.1
88
)
99

1010
require (

Diff for: go.sum

+2
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,5 @@ gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8
1111
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
1212
gopkg.in/yaml.v3 v3.0.0 h1:hjy8E9ON/egN1tAYqKb61G10WtihqetD4sz2H+8nIeA=
1313
gopkg.in/yaml.v3 v3.0.0/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
14+
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
15+
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=

0 commit comments

Comments
 (0)