Skip to content

Commit fe8f7cb

Browse files
authored
Merge pull request #17 from ncode/juliano/updates
(chore) bump go version and deps
2 parents ac6163b + f17a016 commit fe8f7cb

File tree

3 files changed

+140
-148
lines changed

3 files changed

+140
-148
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@ jobs:
66
build:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v3
9+
- uses: actions/checkout@v5
1010
with:
1111
fetch-depth: 2
12-
- uses: actions/setup-go@v3
12+
- uses: actions/setup-go@v6
1313
with:
14-
go-version: '1.22'
14+
go-version: '1.25'
1515
- name: Run coverage
1616
run: go test -coverpkg=./... ./... -race -coverprofile=coverage.out -covermode=atomic
1717
- name: Upload coverage to Codecov
18-
uses: codecov/codecov-action@v3
18+
uses: codecov/codecov-action@v5.5.1
1919
with:
2020
verbose: true
2121
env:

go.mod

Lines changed: 21 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,45 @@
11
module github.com/ncode/tagit
22

3-
go 1.23
3+
go 1.25
44

55
require (
66
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510
7-
github.com/hashicorp/consul/api v1.27.0
8-
github.com/spf13/cobra v1.8.0
9-
github.com/spf13/viper v1.18.2
10-
github.com/stretchr/testify v1.8.4
7+
github.com/hashicorp/consul/api v1.32.1
8+
github.com/spf13/cobra v1.10.1
9+
github.com/spf13/pflag v1.0.10
10+
github.com/spf13/viper v1.20.1
11+
github.com/stretchr/testify v1.10.0
1112
)
1213

1314
require (
1415
github.com/armon/go-metrics v0.4.1 // indirect
1516
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
16-
github.com/fatih/color v1.16.0 // indirect
17-
github.com/fsnotify/fsnotify v1.7.0 // indirect
17+
github.com/fatih/color v1.18.0 // indirect
18+
github.com/fsnotify/fsnotify v1.9.0 // indirect
19+
github.com/go-viper/mapstructure/v2 v2.4.0 // indirect
1820
github.com/hashicorp/errwrap v1.1.0 // indirect
1921
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
20-
github.com/hashicorp/go-hclog v1.6.2 // indirect
22+
github.com/hashicorp/go-hclog v1.6.3 // indirect
2123
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect
24+
github.com/hashicorp/go-metrics v0.5.4 // indirect
2225
github.com/hashicorp/go-multierror v1.1.1 // indirect
2326
github.com/hashicorp/go-rootcerts v1.0.2 // indirect
2427
github.com/hashicorp/golang-lru v1.0.2 // indirect
25-
github.com/hashicorp/hcl v1.0.0 // indirect
26-
github.com/hashicorp/serf v0.10.1 // indirect
28+
github.com/hashicorp/serf v0.10.2 // indirect
2729
github.com/inconshreveable/mousetrap v1.1.0 // indirect
28-
github.com/magiconair/properties v1.8.7 // indirect
29-
github.com/mattn/go-colorable v0.1.13 // indirect
30+
github.com/mattn/go-colorable v0.1.14 // indirect
3031
github.com/mattn/go-isatty v0.0.20 // indirect
3132
github.com/mitchellh/go-homedir v1.1.0 // indirect
3233
github.com/mitchellh/mapstructure v1.5.0 // indirect
33-
github.com/pelletier/go-toml/v2 v2.1.1 // indirect
34+
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
3435
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
35-
github.com/sagikazarmark/locafero v0.4.0 // indirect
36-
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
37-
github.com/sourcegraph/conc v0.3.0 // indirect
38-
github.com/spf13/afero v1.11.0 // indirect
39-
github.com/spf13/cast v1.6.0 // indirect
40-
github.com/spf13/pflag v1.0.5 // indirect
36+
github.com/sagikazarmark/locafero v0.10.0 // indirect
37+
github.com/sourcegraph/conc v0.3.1-0.20240121214520-5f936abd7ae8 // indirect
38+
github.com/spf13/afero v1.14.0 // indirect
39+
github.com/spf13/cast v1.9.2 // indirect
4140
github.com/subosito/gotenv v1.6.0 // indirect
42-
go.uber.org/multierr v1.11.0 // indirect
43-
golang.org/x/exp v0.0.0-20240213143201-ec583247a57a // indirect
44-
golang.org/x/sys v0.17.0 // indirect
45-
golang.org/x/text v0.14.0 // indirect
46-
gopkg.in/ini.v1 v1.67.0 // indirect
41+
golang.org/x/exp v0.0.0-20250819193227-8b4c13bb791b // indirect
42+
golang.org/x/sys v0.35.0 // indirect
43+
golang.org/x/text v0.28.0 // indirect
4744
gopkg.in/yaml.v3 v3.0.1 // indirect
4845
)

0 commit comments

Comments
 (0)