Skip to content

Commit 08a01c4

Browse files
upgrade packages (CVE-2024-6104)
1 parent 6da0317 commit 08a01c4

File tree

3 files changed

+55
-98
lines changed

3 files changed

+55
-98
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,6 @@ status.json
3535
.hugo_build.lock
3636

3737
.env
38+
39+
go.work
40+
go.work.sum

go.mod

+16-18
Original file line numberDiff line numberDiff line change
@@ -8,32 +8,32 @@ require (
88
github.com/capnspacehook/taskmaster v0.0.0-20210519235353-1629df7c85e9
99
github.com/coreos/go-systemd/v22 v22.5.0
1010
github.com/creativeprojects/clog v0.14.0
11-
github.com/creativeprojects/go-selfupdate v1.2.0
11+
github.com/creativeprojects/go-selfupdate v1.3.0
1212
github.com/distatus/battery v0.11.0
13-
github.com/fatih/color v1.16.0
13+
github.com/fatih/color v1.17.0
1414
github.com/joho/godotenv v1.5.1
15-
github.com/mackerelio/go-osstat v0.2.4
15+
github.com/mackerelio/go-osstat v0.2.5
1616
github.com/mattn/go-colorable v0.1.13
1717
github.com/mitchellh/mapstructure v1.5.0
1818
github.com/prometheus/client_golang v1.18.0
1919
github.com/prometheus/common v0.46.0
2020
github.com/rickb777/date v1.14.2
21-
github.com/shirou/gopsutil/v3 v3.24.2
21+
github.com/shirou/gopsutil/v3 v3.24.5
2222
github.com/spf13/afero v1.11.0
2323
github.com/spf13/cast v1.6.0
2424
github.com/spf13/pflag v1.0.5
25-
github.com/spf13/viper v1.18.2
25+
github.com/spf13/viper v1.19.0
2626
github.com/stretchr/testify v1.9.0
2727
golang.org/x/exp v0.0.0-20240318143956-a85f2c67cd81
28-
golang.org/x/sys v0.18.0
29-
golang.org/x/term v0.18.0
30-
golang.org/x/text v0.14.0
28+
golang.org/x/sys v0.21.0
29+
golang.org/x/term v0.21.0
30+
golang.org/x/text v0.16.0
3131
gopkg.in/yaml.v3 v3.0.1
3232
howett.net/plist v1.0.1
3333
)
3434

3535
require (
36-
code.gitea.io/sdk/gitea v0.17.1 // indirect
36+
code.gitea.io/sdk/gitea v0.18.0 // indirect
3737
github.com/beorn7/perks v1.0.1 // indirect
3838
github.com/cespare/xxhash/v2 v2.2.0 // indirect
3939
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
@@ -42,17 +42,16 @@ require (
4242
github.com/go-fed/httpsig v1.1.0 // indirect
4343
github.com/go-ole/go-ole v1.2.6 // indirect
4444
github.com/godbus/dbus/v5 v5.1.0 // indirect
45-
github.com/golang/protobuf v1.5.4 // indirect
4645
github.com/google/go-github/v30 v30.1.0 // indirect
4746
github.com/google/go-querystring v1.1.0 // indirect
4847
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
49-
github.com/hashicorp/go-retryablehttp v0.7.5 // indirect
50-
github.com/hashicorp/go-version v1.6.0 // indirect
48+
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect
49+
github.com/hashicorp/go-version v1.7.0 // indirect
5150
github.com/hashicorp/hcl v1.0.0 // indirect
5251
github.com/lufia/plan9stats v0.0.0-20230110061619-bbe2e5e100de // indirect
5352
github.com/magiconair/properties v1.8.7 // indirect
5453
github.com/mattn/go-isatty v0.0.20 // indirect
55-
github.com/pelletier/go-toml/v2 v2.1.0 // indirect
54+
github.com/pelletier/go-toml/v2 v2.2.2 // indirect
5655
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
5756
github.com/power-devops/perfstat v0.0.0-20221212215047-62379fc7944b // indirect
5857
github.com/prometheus/client_model v0.5.0 // indirect
@@ -66,15 +65,14 @@ require (
6665
github.com/subosito/gotenv v1.6.0 // indirect
6766
github.com/tklauser/go-sysconf v0.3.12 // indirect
6867
github.com/tklauser/numcpus v0.6.1 // indirect
69-
github.com/ulikunitz/xz v0.5.11 // indirect
70-
github.com/xanzy/go-gitlab v0.100.0 // indirect
68+
github.com/ulikunitz/xz v0.5.12 // indirect
69+
github.com/xanzy/go-gitlab v0.106.0 // indirect
7170
github.com/yusufpapurcu/wmi v1.2.4 // indirect
7271
go.uber.org/atomic v1.9.0 // indirect
7372
go.uber.org/multierr v1.9.0 // indirect
74-
golang.org/x/crypto v0.21.0 // indirect
75-
golang.org/x/oauth2 v0.18.0 // indirect
73+
golang.org/x/crypto v0.24.0 // indirect
74+
golang.org/x/oauth2 v0.21.0 // indirect
7675
golang.org/x/time v0.5.0 // indirect
77-
google.golang.org/appengine v1.6.8 // indirect
7876
google.golang.org/protobuf v1.33.0 // indirect
7977
gopkg.in/ini.v1 v1.67.0 // indirect
8078
)

0 commit comments

Comments
 (0)