Skip to content

Commit 093caf4

Browse files
committed
Upgrade golang version in infra-onboarding modules
Signed-off-by: Srinivasamurthy, Ramakrishna <ramakrishna.srinivasamurthy@intel.com>
1 parent 47d085b commit 093caf4

File tree

16 files changed

+16
-16
lines changed

16 files changed

+16
-16
lines changed

dkam/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SPDX-FileCopyrightText: (C) 2025 Intel Corporation
22
# SPDX-License-Identifier: Apache-2.0
33

4-
FROM golang:1.25.7-bookworm as build
4+
FROM golang:1.26.1-bookworm as build
55

66
SHELL ["/bin/bash", "-euo", "pipefail", "-c"]
77

dkam/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// SPDX-License-Identifier: Apache-2.0
33
module github.com/open-edge-platform/infra-onboarding/dkam
44

5-
go 1.25.7
5+
go 1.26.1
66

77
require (
88
github.com/fsnotify/fsnotify v1.9.0

onboarding-manager/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SPDX-FileCopyrightText: (C) 2025 Intel Corporation
22
# SPDX-License-Identifier: Apache-2.0
33

4-
FROM golang:1.25.7-bookworm as builder
4+
FROM golang:1.26.1-bookworm as builder
55

66
ENV GO111MODULE=on
77
ARG MAKE_TARGET=go-build

onboarding-manager/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
module github.com/open-edge-platform/infra-onboarding/onboarding-manager
55

6-
go 1.25.7
6+
go 1.26.1
77

88
require (
99
github.com/envoyproxy/protoc-gen-validate v1.3.0

tink-worker/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
module github.com/tinkerbell/tink
66

7-
go 1.25.5
7+
go 1.26.1
88

99
require (
1010
github.com/cenkalti/backoff/v4 v4.3.0

tinker-actions/src/cexec/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# Original file can be found at https://github.com/tinkerbell/actions.
66

77
# Build cexec
8-
FROM golang:1.25.8-alpine3.23 AS cexec
8+
FROM golang:1.26.1-alpine3.23 AS cexec
99

1010
RUN apk add --no-cache git ca-certificates gcc linux-headers musl-dev
1111
COPY . /src/cexec

tinker-actions/src/cexec/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// Original file can be found at https://github.com/tinkerbell/actions.
66
module cexec
77

8-
go 1.25.8
8+
go 1.26.1
99

1010
require (
1111
github.com/open-edge-platform/infra-onboarding/tinker-actions/pkg/drive_detection v0.0.0

tinker-actions/src/image2disk/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# NOTICE: This file has been modified by Intel Corporation.
55
# Original file can be found at https://github.com/tinkerbell/actions.
66

7-
FROM golang:1.25.8-alpine3.23 AS image2disk
7+
FROM golang:1.26.1-alpine3.23 AS image2disk
88
RUN apk add --no-cache git ca-certificates gcc linux-headers musl-dev
99
COPY . /src/image2disk
1010
COPY pkg /pkg/

tinker-actions/src/image2disk/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
module img2disk
88

9-
go 1.25.8
9+
go 1.26.1
1010

1111
require (
1212
github.com/cenkalti/backoff v2.2.1+incompatible

tinker-actions/src/qemu_nbd_image2disk/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SPDX-FileCopyrightText: (C) 2025 Intel Corporation
22
# SPDX-License-Identifier: Apache-2.0
33

4-
FROM golang:1.25.8-alpine3.23 AS qemu-nbd-image2disk
4+
FROM golang:1.26.1-alpine3.23 AS qemu-nbd-image2disk
55
RUN apk add --no-cache git ca-certificates gcc linux-headers musl-dev
66
COPY . /src/qemu-nbd-image2disk
77
COPY pkg /pkg/

0 commit comments

Comments
 (0)