Skip to content

Commit 5b68e72

Browse files
authored
Merge pull request #6624 from thaJeztah/bump_go_minimum
update minimum go version to go1.24
2 parents 0b3c028 + 7b62484 commit 5b68e72

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

84 files changed

+86
-84
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ shellcheck: ## run shellcheck validation
5252
.PHONY: fmt
5353
fmt: ## run gofumpt (if present) or gofmt
5454
@if command -v gofumpt > /dev/null; then \
55-
gofumpt -w -d -lang=1.23 . ; \
55+
gofumpt -w -d -lang=1.24 . ; \
5656
else \
5757
go list -f {{.Dir}} ./... | xargs gofmt -w -s -d ; \
5858
fi

cli-plugins/manager/error.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// FIXME(thaJeztah): remove once we are a module; the go:build directive prevents go from downgrading language version to go1.16:
2-
//go:build go1.23
2+
//go:build go1.24
33

44
package manager
55

cli/command/cli.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// FIXME(thaJeztah): remove once we are a module; the go:build directive prevents go from downgrading language version to go1.16:
2-
//go:build go1.23
2+
//go:build go1.24
33

44
package command
55

cli/command/config/inspect.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// FIXME(thaJeztah): remove once we are a module; the go:build directive prevents go from downgrading language version to go1.16:
2-
//go:build go1.23
2+
//go:build go1.24
33

44
package config
55

cli/command/container/completion.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// FIXME(thaJeztah): remove once we are a module; the go:build directive prevents go from downgrading language version to go1.16:
2-
//go:build go1.23
2+
//go:build go1.24
33

44
package container
55

cli/command/container/inspect.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// FIXME(thaJeztah): remove once we are a module; the go:build directive prevents go from downgrading language version to go1.16:
2-
//go:build go1.23
2+
//go:build go1.24
33

44
package container
55

cli/command/container/opts.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// FIXME(vvoland): remove once we are a module; the go:build directive prevents go from downgrading language version to go1.16:
2-
//go:build go1.23
2+
//go:build go1.24
33

44
package container
55

cli/command/context.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// FIXME(thaJeztah): remove once we are a module; the go:build directive prevents go from downgrading language version to go1.16:
2-
//go:build go1.23
2+
//go:build go1.24
33

44
package command
55

cli/command/context/completion.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// FIXME(thaJeztah): remove once we are a module; the go:build directive prevents go from downgrading language version to go1.16:
2-
//go:build go1.23
2+
//go:build go1.24
33

44
package context
55

cli/command/context/create.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// FIXME(thaJeztah): remove once we are a module; the go:build directive prevents go from downgrading language version to go1.16:
2-
//go:build go1.23
2+
//go:build go1.24
33

44
package context
55

0 commit comments

Comments
 (0)