Skip to content

Commit 7466d58

Browse files
committed
chore: update dependencies and GitHub actions configuration
- Update the version of `actions/setup-go` from v4 to v5 in the `.github/workflows/go.yml` file - Update the version of `actions/setup-go` from v4 to v5 in the `.github/workflows/goreleaser.yml` file - Update the version of `github.com/gabriel-vasile/mimetype` from v1.4.2 to v1.4.3 in the `go.mod` file - Update the version of `github.com/mattn/go-isatty` from v0.0.19 to v0.0.20 in the `go.mod` file - Update the version of `golang.org/x/net` from v0.16.0 to v0.17.0 in the `go.mod` file Signed-off-by: Bo-Yi Wu <[email protected]>
1 parent 444e91f commit 7466d58

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

.github/workflows/go.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Setup go
16-
uses: actions/setup-go@v4
16+
uses: actions/setup-go@v5
1717
with:
1818
go-version: "^1"
1919
- name: Checkout repository
@@ -39,7 +39,7 @@ jobs:
3939
GOPROXY: https://proxy.golang.org
4040
steps:
4141
- name: Set up Go ${{ matrix.go }}
42-
uses: actions/setup-go@v4
42+
uses: actions/setup-go@v5
4343
with:
4444
go-version: ${{ matrix.go }}
4545

.github/workflows/goreleaser.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
with:
1818
fetch-depth: 0
1919
- name: Set up Go
20-
uses: actions/setup-go@v4
20+
uses: actions/setup-go@v5
2121
with:
2222
go-version: ^1
2323
- name: Run GoReleaser

go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ require (
1313
github.com/chenzhuoyu/base64x v0.0.0-20230717121745-296ad89f973d // indirect
1414
github.com/chenzhuoyu/iasm v0.9.0 // indirect
1515
github.com/davecgh/go-spew v1.1.1 // indirect
16-
github.com/gabriel-vasile/mimetype v1.4.2 // indirect
16+
github.com/gabriel-vasile/mimetype v1.4.3 // indirect
1717
github.com/gin-contrib/sse v0.1.0 // indirect
1818
github.com/go-playground/locales v0.14.1 // indirect
1919
github.com/go-playground/universal-translator v0.18.1 // indirect
@@ -22,7 +22,7 @@ require (
2222
github.com/json-iterator/go v1.1.12 // indirect
2323
github.com/klauspost/cpuid/v2 v2.2.5 // indirect
2424
github.com/leodido/go-urn v1.2.4 // indirect
25-
github.com/mattn/go-isatty v0.0.19 // indirect
25+
github.com/mattn/go-isatty v0.0.20 // indirect
2626
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
2727
github.com/modern-go/reflect2 v1.0.2 // indirect
2828
github.com/pelletier/go-toml/v2 v2.1.0 // indirect
@@ -31,7 +31,7 @@ require (
3131
github.com/ugorji/go/codec v1.2.11 // indirect
3232
golang.org/x/arch v0.5.0 // indirect
3333
golang.org/x/crypto v0.14.0 // indirect
34-
golang.org/x/net v0.16.0 // indirect
34+
golang.org/x/net v0.17.0 // indirect
3535
golang.org/x/sys v0.13.0 // indirect
3636
golang.org/x/text v0.13.0 // indirect
3737
google.golang.org/protobuf v1.31.0 // indirect

go.sum

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c
1313
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
1414
github.com/gabriel-vasile/mimetype v1.4.2 h1:w5qFW6JKBz9Y393Y4q372O9A7cUSequkh1Q7OhCmWKU=
1515
github.com/gabriel-vasile/mimetype v1.4.2/go.mod h1:zApsH/mKG4w07erKIaJPFiX0Tsq9BFQgN3qGY5GnNgA=
16+
github.com/gabriel-vasile/mimetype v1.4.3 h1:in2uUcidCuFcDKtdcBxlR0rJ1+fsokWf+uqxgUFjbI0=
17+
github.com/gabriel-vasile/mimetype v1.4.3/go.mod h1:d8uq/6HKRL6CGdk+aubisF/M5GcPfT7nKyLpA0lbSSk=
1618
github.com/gin-contrib/sse v0.1.0 h1:Y/yl/+YNO8GZSjAhjMsSuLt29uWRFHdHYUb5lYOV9qE=
1719
github.com/gin-contrib/sse v0.1.0/go.mod h1:RHrZQHXnP2xjPF+u1gW/2HnVO7nvIa9PG3Gm+fLHvGI=
1820
github.com/gin-gonic/gin v1.9.1 h1:4idEAncQnU5cB7BeOkPtxjfCSye0AAm1R0RVIqJ+Jmg=
@@ -40,6 +42,8 @@ github.com/leodido/go-urn v1.2.4 h1:XlAE/cm/ms7TE/VMVoduSpNBoyc2dOxHs5MZSwAN63Q=
4042
github.com/leodido/go-urn v1.2.4/go.mod h1:7ZrI8mTSeBSHl/UaRyKQW1qZeMgak41ANeCNaVckg+4=
4143
github.com/mattn/go-isatty v0.0.19 h1:JITubQf0MOLdlGRuRq+jtsDlekdYPia9ZFsB8h/APPA=
4244
github.com/mattn/go-isatty v0.0.19/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y=
45+
github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWEY=
46+
github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y=
4347
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q=
4448
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg=
4549
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q=
@@ -73,6 +77,8 @@ golang.org/x/crypto v0.14.0 h1:wBqGXzWJW6m1XrIKlAH0Hs1JJ7+9KBwnIO8v66Q9cHc=
7377
golang.org/x/crypto v0.14.0/go.mod h1:MVFd36DqK4CsrnJYDkBA3VC4m2GkXAM0PvzMCn4JQf4=
7478
golang.org/x/net v0.16.0 h1:7eBu7KsSvFDtSXUIDbh3aqlK4DPsZ1rByC8PFfBThos=
7579
golang.org/x/net v0.16.0/go.mod h1:NxSsAGuq816PNPmqtQdLE42eU2Fs7NoRIZrHJAlaCOE=
80+
golang.org/x/net v0.17.0 h1:pVaXccu2ozPjCXewfr1S7xza/zcXTity9cCdXQYSjIM=
81+
golang.org/x/net v0.17.0/go.mod h1:NxSsAGuq816PNPmqtQdLE42eU2Fs7NoRIZrHJAlaCOE=
7682
golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
7783
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
7884
golang.org/x/sys v0.13.0 h1:Af8nKPmuFypiUBjVoU9V20FiaFXOcuZI21p0ycVYYGE=

0 commit comments

Comments
 (0)