Skip to content

Commit

Permalink
feat: update Go to 1.22.3, Linux to 6.6.30
Browse files Browse the repository at this point in the history
Using latest versions.

Signed-off-by: Andrey Smirnov <andrey.smirnov@siderolabs.com>
  • Loading branch information
smira committed May 17, 2024
1 parent 24c3532 commit 44853ba
Show file tree
Hide file tree
Showing 13 changed files with 17 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .drone.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ local TriggerDownstream(name, target, repositories, image='', params=[], depends
// This provides the docker service.
local docker = {
name: 'docker',
image: 'docker:25.0.2-dind',
image: 'docker:26.1-dind',
entrypoint: ['dockerd'],
privileged: true,
command: [
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ NAME = Talos
CLOUD_IMAGES_EXTRA_ARGS ?= ""

ARTIFACTS := _out
TOOLS ?= ghcr.io/siderolabs/tools:v1.7.0-1-g10b2a69
TOOLS ?= ghcr.io/siderolabs/tools:v1.7.0-2-g345db93

PKGS_PREFIX ?= ghcr.io/siderolabs
PKGS ?= v1.7.0-9-g76bd73c
PKGS ?= v1.7.0-14-g9caa8be
EXTRAS ?= v1.7.0-1-gbb76755

PKG_FHS ?= $(PKGS_PREFIX)/fhs:$(PKGS)
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/siderolabs/talos

go 1.22.2
go 1.22.3

replace (
// forked coredns so we don't carry caddy and other stuff into the Talos
Expand Down
2 changes: 1 addition & 1 deletion go.work
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
go 1.22.2
go 1.22.3

use (
.
Expand Down
2 changes: 1 addition & 1 deletion hack/cloud-image-uploader/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/siderolabs/cloud-image-uploader

go 1.22.2
go 1.22.3

require (
github.com/Azure/azure-sdk-for-go v68.0.0+incompatible
Expand Down
2 changes: 1 addition & 1 deletion hack/docgen/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/siderolabs/talos-hack-docgen

go 1.22.2
go 1.22.3

// forked go-yaml that introduces RawYAML interface, which can be used to populate YAML fields using bytes
// which are then encoded as a valid YAML blocks with proper indentiation
Expand Down
2 changes: 1 addition & 1 deletion hack/gotagsrewrite/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/siderolabs/gotagsrewrite

go 1.22.2
go 1.22.3

require (
github.com/fatih/structtag v1.2.0
Expand Down
2 changes: 1 addition & 1 deletion hack/module-sig-verify/go.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module module-sig-verify

go 1.22.2
go 1.22.3

require go.mozilla.org/pkcs7 v0.0.0-20210826202110-33d05740a352
7 changes: 3 additions & 4 deletions hack/release.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ github_repo = "siderolabs/talos"
match_deps = "^github.com/((talos-systems|siderolabs)/[a-zA-Z0-9-]+)$"

# previous release
previous = "v1.7.0"
previous = "v1.7.1"

pre_release = false

Expand All @@ -17,10 +17,9 @@ preface = """\
[notes.updates]
title = "Component Updates"
description = """\
Linux: 6.6.29
containerd: 1.7.16
Linux: 6.6.30
Talos is built with Go 1.22.2.
Talos is built with Go 1.22.3.
"""


Expand Down
2 changes: 1 addition & 1 deletion hack/structprotogen/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/siderolabs/structprotogen

go 1.22.2
go 1.22.3

require (
github.com/fatih/structtag v1.2.0
Expand Down
4 changes: 2 additions & 2 deletions pkg/machinery/constants/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (

const (
// DefaultKernelVersion is the default Linux kernel version.
DefaultKernelVersion = "6.6.29-talos"
DefaultKernelVersion = "6.6.30-talos"

// KernelModulesPath is the default path to the kernel modules without the kernel version.
KernelModulesPath = "/lib/modules"
Expand Down Expand Up @@ -881,7 +881,7 @@ const (
DBusClientSocketPath = "/run/dbus/system_bus_socket"

// GoVersion is the version of Go compiler this release was built with.
GoVersion = "go1.22.2"
GoVersion = "go1.22.3"

// KubernetesTalosAPIServiceName is the name of the Kubernetes service to access Talos API.
KubernetesTalosAPIServiceName = "talos"
Expand Down
2 changes: 1 addition & 1 deletion pkg/machinery/gendata/data/pkgs
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.7.0-9-g76bd73c
v1.7.0-14-g9caa8be
2 changes: 1 addition & 1 deletion pkg/machinery/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/siderolabs/talos/pkg/machinery

go 1.22.2
go 1.22.3

// forked go-yaml that introduces RawYAML interface, which can be used to populate YAML fields using bytes
// which are then encoded as a valid YAML blocks with proper indentiation
Expand Down

0 comments on commit 44853ba

Please sign in to comment.