Skip to content

Commit f252efa

Browse files
authored
Bumpo golang (#125)
1 parent fe2f391 commit f252efa

File tree

4 files changed

+94
-84
lines changed

4 files changed

+94
-84
lines changed

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- run: git fetch --force --tags
2020
- uses: actions/setup-go@v4
2121
with:
22-
go-version: '>=1.19.3'
22+
go-version: '>=1.24'
2323
cache: true
2424
- uses: goreleaser/goreleaser-action@v4
2525
with:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ test:
88
go test ./...
99

1010
lint:
11-
docker run --rm -v $(shell pwd):/app -w /app golangci/golangci-lint:v1.55.1 golangci-lint run
11+
docker run --rm -v $(shell pwd):/app -w /app golangci/golangci-lint:v1.64.5 golangci-lint run
1212

1313
all: build test lint

go.mod

Lines changed: 28 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,49 @@
11
module github.com/cloudentity/oauth2c
22

3-
go 1.21
3+
go 1.24
44

55
require (
66
github.com/cli/browser v1.3.1-0.20231006085632-b393df5d7bfa
77
github.com/go-jose/go-jose/v3 v3.0.4
88
github.com/go-playground/locales v0.14.1
99
github.com/go-playground/universal-translator v0.18.1
10-
github.com/go-playground/validator/v10 v10.17.0
10+
github.com/go-playground/validator/v10 v10.25.0
1111
github.com/golang-jwt/jwt/v4 v4.5.1
12-
github.com/google/uuid v1.3.0
12+
github.com/google/uuid v1.6.0
1313
github.com/grantae/certinfo v0.0.0-20170412194111-59d56a35515b
1414
github.com/hashicorp/go-multierror v1.1.1
15-
github.com/imdario/mergo v0.3.13
15+
github.com/imdario/mergo v0.3.16
1616
github.com/itchyny/gojq v0.12.10
17-
github.com/lithammer/shortuuid/v4 v4.0.0
17+
github.com/lithammer/shortuuid/v4 v4.2.0
1818
github.com/pkg/errors v0.9.1
19-
github.com/pterm/pterm v0.12.42
20-
github.com/spf13/cobra v1.5.0
21-
github.com/stretchr/testify v1.8.2
22-
github.com/tidwall/pretty v1.2.0
19+
github.com/pterm/pterm v0.12.80
20+
github.com/spf13/cobra v1.9.1
21+
github.com/stretchr/testify v1.8.4
22+
github.com/tidwall/pretty v1.2.1
2323
)
2424

2525
require (
26-
atomicgo.dev/cursor v0.1.1 // indirect
27-
atomicgo.dev/keyboard v0.2.8 // indirect
28-
github.com/containerd/console v1.0.3 // indirect
26+
atomicgo.dev/cursor v0.2.0 // indirect
27+
atomicgo.dev/keyboard v0.2.9 // indirect
28+
atomicgo.dev/schedule v0.1.0 // indirect
29+
github.com/containerd/console v1.0.4 // indirect
2930
github.com/davecgh/go-spew v1.1.1 // indirect
30-
github.com/gabriel-vasile/mimetype v1.4.2 // indirect
31-
github.com/gookit/color v1.5.0 // indirect
32-
github.com/hashicorp/errwrap v1.0.0 // indirect
33-
github.com/inconshreveable/mousetrap v1.0.0 // indirect
31+
github.com/gabriel-vasile/mimetype v1.4.8 // indirect
32+
github.com/gookit/color v1.5.4 // indirect
33+
github.com/hashicorp/errwrap v1.1.0 // indirect
34+
github.com/inconshreveable/mousetrap v1.1.0 // indirect
3435
github.com/itchyny/timefmt-go v0.1.5 // indirect
35-
github.com/leodido/go-urn v1.2.4 // indirect
36-
github.com/lithammer/fuzzysearch v1.1.5 // indirect
37-
github.com/mattn/go-runewidth v0.0.14 // indirect
36+
github.com/leodido/go-urn v1.4.0 // indirect
37+
github.com/lithammer/fuzzysearch v1.1.8 // indirect
38+
github.com/mattn/go-runewidth v0.0.16 // indirect
3839
github.com/pmezard/go-difflib v1.0.0 // indirect
39-
github.com/rivo/uniseg v0.2.0 // indirect
40-
github.com/spf13/pflag v1.0.5 // indirect
41-
github.com/xo/terminfo v0.0.0-20210125001918-ca9a967f8778 // indirect
42-
golang.org/x/crypto v0.21.0 // indirect
43-
golang.org/x/net v0.23.0 // indirect
44-
golang.org/x/sys v0.18.0 // indirect
45-
golang.org/x/term v0.18.0 // indirect
46-
golang.org/x/text v0.14.0 // indirect
40+
github.com/rivo/uniseg v0.4.7 // indirect
41+
github.com/spf13/pflag v1.0.6 // indirect
42+
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect
43+
golang.org/x/crypto v0.35.0 // indirect
44+
golang.org/x/net v0.35.0 // indirect
45+
golang.org/x/sys v0.30.0 // indirect
46+
golang.org/x/term v0.29.0 // indirect
47+
golang.org/x/text v0.22.0 // indirect
4748
gopkg.in/yaml.v3 v3.0.1 // indirect
4849
)

0 commit comments

Comments
 (0)