Skip to content

Commit

Permalink
bump go version to 1.23, update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
hertg committed Jan 26, 2025
1 parent 532ee3d commit 6a3bd11
Show file tree
Hide file tree
Showing 4 changed files with 94 additions and 22 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
name: Test
strategy:
matrix:
go: [ '1.19' ]
go: [ '1.23' ]
uses: ./.github/workflows/go-test.yml
with:
go-version: ${{ matrix.go }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
name: Test
strategy:
matrix:
go: [ '1.19' ]
go: [ '1.23' ]
uses: ./.github/workflows/go-test.yml
with:
go-version: ${{ matrix.go }}
Expand All @@ -21,7 +21,7 @@ jobs:
needs: test
strategy:
matrix:
go: [ '1.19' ]
go: [ '1.23' ]
arch: [ 'amd64', 'arm64' ]
uses: ./.github/workflows/go-build.yml
with:
Expand Down
44 changes: 25 additions & 19 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,38 +1,44 @@
module github.com/hertg/egpu-switcher

go 1.18
go 1.23

require (
github.com/coreos/go-systemd/v22 v22.3.2
github.com/fatih/color v1.13.0
github.com/coreos/go-systemd/v22 v22.5.0
github.com/fatih/color v1.18.0
github.com/hertg/gopci v0.1.0
github.com/spf13/cobra v1.5.0
github.com/spf13/viper v1.12.0
github.com/spf13/cobra v1.8.1
github.com/spf13/viper v1.19.0
)

require github.com/godbus/dbus/v5 v5.0.4 // indirect
require github.com/godbus/dbus/v5 v5.1.0 // indirect

require (
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
github.com/fsnotify/fsnotify v1.5.4 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.6 // indirect
github.com/fsnotify/fsnotify v1.8.0 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/hertg/go-pciids v0.0.1 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/magiconair/properties v1.8.6 // indirect
github.com/mattn/go-colorable v0.1.12 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/magiconair/properties v1.8.9 // indirect
github.com/mattn/go-colorable v0.1.14 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/pelletier/go-toml v1.9.5 // indirect
github.com/pelletier/go-toml/v2 v2.0.1 // indirect
github.com/pelletier/go-toml/v2 v2.2.3 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/spf13/afero v1.8.2 // indirect
github.com/spf13/cast v1.5.0 // indirect
github.com/sagikazarmark/locafero v0.7.0 // indirect
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
github.com/sourcegraph/conc v0.3.0 // indirect
github.com/spf13/afero v1.12.0 // indirect
github.com/spf13/cast v1.7.1 // indirect
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/subosito/gotenv v1.3.0 // indirect
golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f // indirect
golang.org/x/text v0.3.8 // indirect
gopkg.in/ini.v1 v1.66.4 // indirect
github.com/subosito/gotenv v1.6.0 // indirect
go.uber.org/atomic v1.11.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/exp v0.0.0-20250106191152-7588d65b2ba8 // indirect
golang.org/x/sys v0.29.0 // indirect
golang.org/x/text v0.21.0 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
Loading

0 comments on commit 6a3bd11

Please sign in to comment.