Skip to content

Commit

Permalink
bump to go1.24
Browse files Browse the repository at this point in the history
  • Loading branch information
navigaid committed Feb 12, 2025
1 parent 8b8364a commit bcb170f
Show file tree
Hide file tree
Showing 21 changed files with 21 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
test:
strategy:
matrix:
go-version: [1.23]
go-version: [1.24]
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
Expand Down
1 change: 1 addition & 0 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ version: 2
env:
- CGO_ENABLED=0
- GONOSUMDB=*
- GOTOOLCHAIN=go1.24.0
- GOPROXY=https://proxy.golang.org,https://goproxy.cn,https://goproxy.io,direct

before:
Expand Down
2 changes: 1 addition & 1 deletion WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ go_rules_dependencies()

go_register_toolchains(
nogo = "@//:nogo",
version = "1.23.4",
version = "1.24.0",
) # nogo is in the top-level BUILD file of this workspace

git_repository(
Expand Down
2 changes: 1 addition & 1 deletion cmd/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module k0s.io/cmd

go 1.23.4
go 1.24

require (
github.com/btwiuse/bingo v0.0.3
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module k0s.io

go 1.23.4
go 1.24
2 changes: 1 addition & 1 deletion go.work
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
go 1.23.4
go 1.24

use (
.
Expand Down
2 changes: 1 addition & 1 deletion pkg/agent/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module k0s.io/pkg/agent

go 1.23.4
go 1.24

require (
github.com/ActiveState/termtest/conpty v0.5.0
Expand Down
2 changes: 1 addition & 1 deletion pkg/apiserver/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module k0s.io/pkg/apiserver

go 1.23.4
go 1.24

require (
github.com/emicklei/go-restful/v3 v3.12.1
Expand Down
2 changes: 1 addition & 1 deletion pkg/asciitransport/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module k0s.io/pkg/asciitransport

go 1.23.4
go 1.24

require (
github.com/btwiuse/pretty v0.2.1
Expand Down
2 changes: 1 addition & 1 deletion pkg/cli/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module k0s.io/pkg/cli

go 1.23.4
go 1.24

require (
github.com/btwiuse/multicall v0.0.5
Expand Down
2 changes: 1 addition & 1 deletion pkg/client/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module k0s.io/pkg/client

go 1.23.4
go 1.24

require (
github.com/VojtechVitek/yaml-cli v0.0.5
Expand Down
2 changes: 1 addition & 1 deletion pkg/hub/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module k0s.io/pkg/hub

go 1.23.4
go 1.24

require (
github.com/abbot/go-http-auth v0.4.0
Expand Down
2 changes: 1 addition & 1 deletion pkg/manager/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module k0s.io/pkg/manager

go 1.23.4
go 1.24

require (
github.com/btwiuse/gods v0.0.1
Expand Down
2 changes: 1 addition & 1 deletion pkg/middleware/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module k0s.io/pkg/middleware

go 1.23.4
go 1.24

require (
github.com/gorilla/handlers v1.5.2
Expand Down
2 changes: 1 addition & 1 deletion pkg/plugin/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module k0s.io/pkg/plugin

go 1.23.4
go 1.24

require (
github.com/btwiuse/rng v0.0.1
Expand Down
2 changes: 1 addition & 1 deletion pkg/simple/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module k0s.io/pkg/simple

go 1.23.4
go 1.24

require (
github.com/gorilla/handlers v1.5.2
Expand Down
2 changes: 1 addition & 1 deletion pkg/tunnel/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module k0s.io/pkg/tunnel

go 1.23.4
go 1.24

require (
github.com/btwiuse/wsconn v0.0.3
Expand Down
2 changes: 1 addition & 1 deletion pkg/ui/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module k0s.io/pkg/ui

go 1.23.4
go 1.24

require (
github.com/gorilla/mux v1.8.1
Expand Down
2 changes: 1 addition & 1 deletion pkg/utils/go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module k0s.io/pkg/utils

go 1.23.4
go 1.24
2 changes: 1 addition & 1 deletion third_party/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module k0s.io/third_party

go 1.23.4
go 1.24

require (
github.com/BurntSushi/toml v1.1.0
Expand Down
2 changes: 1 addition & 1 deletion third_party/pkg/exporter/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module k0s.io/third_party/pkg/exporter

go 1.23.4
go 1.24

require (
github.com/alecthomas/kingpin/v2 v2.4.0
Expand Down

0 comments on commit bcb170f

Please sign in to comment.