Skip to content

Commit f39c93e

Browse files
authored
Merge pull request #908 from hakman/bump-debian-base
Update Go to v1.22.3
2 parents 66f9e51 + 8c22b69 commit f39c93e

File tree

5 files changed

+5
-9
lines changed

5 files changed

+5
-9
lines changed

Diff for: .github/workflows/update-deps.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
steps:
2020
- uses: actions/setup-go@v5
2121
with:
22-
go-version: '1.22.1'
22+
go-version: '1.22.3'
2323
- uses: actions/checkout@v4
2424
- name: Update Dependencies
2525
id: update_deps

Diff for: Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ ARG BASEIMAGE
2020
# Must override builder-base, not builder, since the latter is referred to later in the file and so must not be
2121
# directly replaced. See here, and note that "stage" parameter mentioned there has been renamed to
2222
# "build-context": https://github.com/docker/buildx/pull/904#issuecomment-1005871838
23-
FROM golang:1.22.2-bookworm as builder-base
23+
FROM golang:1.22.3-bookworm as builder-base
2424
FROM builder-base as builder
2525
LABEL maintainer="Andy Xie <[email protected]>"
2626

Diff for: Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ ENABLE_JOURNALD=0
7373
endif
7474

7575
# Set default base image to Debian 12 (Bookworm)
76-
BASEIMAGE:=registry.k8s.io/build-image/debian-base:bookworm-v1.0.2
76+
BASEIMAGE:=registry.k8s.io/build-image/debian-base:bookworm-v1.0.3
7777

7878
# Disable cgo by default to make the binary statically linked.
7979
CGO_ENABLED:=0

Diff for: go.mod

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
module k8s.io/node-problem-detector
22

3-
go 1.22.0
4-
5-
toolchain go1.22.1
3+
go 1.22.3
64

75
require (
86
cloud.google.com/go/compute/metadata v0.3.0

Diff for: test/go.mod

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
module k8s.io/node-problem-detector/test
22

3-
go 1.22.0
4-
5-
toolchain go1.22.1
3+
go 1.22.3
64

75
replace k8s.io/node-problem-detector => ../.
86

0 commit comments

Comments
 (0)