Skip to content

Commit 83524ca

Browse files
committed
deps: Bump Golang to 1.23.3
Signed-off-by: Cezar Craciunoiu <[email protected]>
1 parent 74563c5 commit 83524ca

File tree

20 files changed

+31
-33
lines changed

20 files changed

+31
-33
lines changed

.github/workflows/check-static.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
- uses: actions/setup-go@v5
2525
with:
26-
go-version: 1.22.3
26+
go-version: 1.23.3
2727
cache: false
2828

2929
- name: Set Go variables

.github/workflows/tests-stable.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444

4545
- uses: actions/setup-go@v5
4646
with:
47-
go-version: 1.22.3
47+
go-version: 1.23.3
4848
cache: false
4949

5050
- name: Set Go variables
@@ -90,7 +90,7 @@ jobs:
9090
- name: Set up Go
9191
uses: actions/setup-go@v5
9292
with:
93-
go-version: 1.22.3
93+
go-version: 1.23.3
9494
cache: false
9595

9696
- name: Set Go variables
@@ -141,7 +141,7 @@ jobs:
141141
- name: Set up Go
142142
uses: actions/setup-go@v5
143143
with:
144-
go-version: 1.22.3
144+
go-version: 1.23.3
145145
cache: false
146146

147147
- name: Set Go variables

.github/workflows/tests.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
- uses: actions/setup-go@v5
2727
with:
28-
go-version: 1.22.3
28+
go-version: 1.23.3
2929
cache: false
3030

3131
- name: Set Go variables
@@ -67,7 +67,7 @@ jobs:
6767
- name: Set up Go
6868
uses: actions/setup-go@v5
6969
with:
70-
go-version: 1.22.3
70+
go-version: 1.23.3
7171
cache: false
7272

7373
- name: Set Go variables
@@ -120,7 +120,7 @@ jobs:
120120
- name: Set up Go
121121
uses: actions/setup-go@v5
122122
with:
123-
go-version: 1.22.3
123+
go-version: 1.23.3
124124
cache: false
125125

126126
- name: Set Go variables

.github/workflows/tools-go-generate-qemu-device.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
- uses: actions/setup-go@v5
2424
with:
25-
go-version: 1.22.3
25+
go-version: 1.23.3
2626
cache: false
2727

2828
- name: Set go.mod variable
@@ -48,7 +48,7 @@ jobs:
4848

4949
- uses: actions/setup-go@v5
5050
with:
51-
go-version: 1.22.3
51+
go-version: 1.23.3
5252
cache: false
5353

5454
- name: Set Go variables

.github/workflows/tools-protoc-gen-go-netconn.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
- uses: actions/setup-go@v5
2424
with:
25-
go-version: 1.22.3
25+
go-version: 1.23.3
2626
cache: false
2727

2828
- name: Set go.mod variable
@@ -48,7 +48,7 @@ jobs:
4848

4949
- uses: actions/setup-go@v5
5050
with:
51-
go-version: 1.22.3
51+
go-version: 1.23.3
5252
cache: false
5353

5454
- name: Set Go variables

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ TOOLS ?= github-action \
2222
webinstall
2323
GOMOD ?= kraftkit.sh
2424
IMAGE_TAG ?= latest
25-
GO_VERSION ?= 1.22
25+
GO_VERSION ?= 1.23
2626

2727
# Add a special version tag for pull requests
2828
ifneq ($(shell grep 'refs/pull' $(WORKDIR)/.git/FETCH_HEAD),)

buildenvs/Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ qemu:
4343
$(DOCKER_BUILD_EXTRA) $(WORKDIR)
4444

4545
.PHONY: myself
46-
myself: GO_VERSION ?= 1.22.3
46+
myself: GO_VERSION ?= 1.23.3
4747
myself: ENVIRONMENT ?= myself
4848
myself: IMAGE ?= $(REGISTRY)/myself:$(IMAGE_TAG)
4949
myself: TARGET ?= kraftkit
@@ -68,7 +68,7 @@ myself-full:
6868

6969
.PHONY: base
7070
base: ENVIRONMENT ?= base
71-
base: GO_VERSION ?= 1.22.3
71+
base: GO_VERSION ?= 1.23.3
7272
base: IMAGE ?= $(REGISTRY)/base:$(IMAGE_TAG)
7373
base: KRAFTKIT_VERSION ?= latest
7474
base: QEMU_VERSION ?= 8.2.4
@@ -90,7 +90,7 @@ base:
9090

9191
.PHONY: base-golang
9292
base-golang: ENVIRONMENT ?= base-golang
93-
base-golang: GO_VERSION ?= 1.22.3
93+
base-golang: GO_VERSION ?= 1.23.3
9494
base-golang: IMAGE ?= $(REGISTRY)/base-golang:$(IMAGE_TAG)
9595
base-golang: KRAFTKIT_VERSION ?= latest
9696
base-golang: QEMU_VERSION ?= 8.2.4
@@ -113,7 +113,7 @@ base-golang:
113113

114114
.PHONY: github-action
115115
github-action: ENVIRONMENT ?= github-action
116-
github-action: GO_VERSION ?= 1.22.3
116+
github-action: GO_VERSION ?= 1.23.3
117117
github-action: IMAGE ?= $(REGISTRY)/github-action:$(IMAGE_TAG)
118118
github-action: KRAFTKIT_VERSION ?= latest
119119
ifeq ($(WITH_CACHE),y)

buildenvs/base-golang.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Licensed under the BSD-3-Clause License (the "License").
44
# You may not use this file except in compliance with the License.
55
ARG REGISTRY=kraftkit.sh
6-
ARG GO_VERSION=1.22.3
6+
ARG GO_VERSION=1.23.3
77

88
FROM golang:${GO_VERSION}-bookworm AS golang
99
FROM ${REGISTRY}/base:latest

buildenvs/github-action.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Copyright (c) 2022, Unikraft GmbH and The KraftKit Authors.
33
# Licensed under the BSD-3-Clause License (the "License").
44
# You may not use this file except in compliance with the License.
5-
ARG GO_VERSION=1.22.3
5+
ARG GO_VERSION=1.23.3
66
ARG DEBIAN_VERSION=bookworm-20240513
77
ARG KRAFTKIT_VERSION=latest
88
ARG QEMU_VERSION=8.2.4

buildenvs/myself.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Licensed under the BSD-3-Clause License (the "License").
44
# You may not use this file except in compliance with the License.
55

6-
ARG GO_VERSION=1.22.3
6+
ARG GO_VERSION=1.23.3
77

88
FROM golang:${GO_VERSION}-bookworm AS kraftkit-full
99

@@ -34,7 +34,7 @@ RUN set -xe; \
3434

3535
WORKDIR /go/src/kraftkit.sh
3636

37-
COPY --from=ghcr.io/goreleaser/goreleaser-cross:v1.22.3 /usr/bin/goreleaser /usr/bin/
37+
COPY --from=ghcr.io/goreleaser/goreleaser-cross:v1.23.3 /usr/bin/goreleaser /usr/bin/
3838

3939
ENV DOCKER=
4040
ENV GOROOT=/usr/local/go

0 commit comments

Comments
 (0)