Skip to content

Commit ffe4b33

Browse files
committed
tools/docker: update golang to 1.24.4
1 parent 091a06c commit ffe4b33

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tools/docker/env/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get install -y -q --no-install-recommends
7171

7272
# Since go 1.21 the toolchain required by go.mod is automatically downloaded.
7373
# There is no need to version up golang here after go.mod changes.
74-
RUN curl https://dl.google.com/go/go1.22.7.linux-amd64.tar.gz | tar -C /usr/local -xz
74+
RUN curl https://dl.google.com/go/go1.24.4.linux-amd64.tar.gz | tar -C /usr/local -xz
7575
ENV PATH /usr/local/go/bin:/gopath/bin:$PATH
7676
ENV GOPATH /gopath
7777
ENV GOMODCACHE /syzkaller/.cache/gomod

tools/docker/syzbot/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ RUN test "$(uname -m)" != x86_64 && exit 0 || \
3232

3333
# Since go 1.21 the toolchain required by go.mod is automatically downloaded.
3434
# There is no need to version up golang here after go.mod changes.
35-
RUN curl https://dl.google.com/go/go1.22.7.linux-$(uname -m | sed 's/aarch64/arm64/;s/x86_64/amd64/').tar.gz | tar -C /usr/local -xz
35+
RUN curl https://dl.google.com/go/go1.24.4.linux-$(uname -m | sed 's/aarch64/arm64/;s/x86_64/amd64/').tar.gz | tar -C /usr/local -xz
3636
ENV PATH /usr/local/go/bin:$PATH
3737

3838
# The default clang-14 is too old, install the latest one.

0 commit comments

Comments
 (0)