Skip to content

Commit d2ec79a

Browse files
SpangleLabsroselyn
andauthored
Update golang version in testing docker images (#3499)
I think this might be required before trying to upgrade the golang version in please repository, (#3498) to enable CircleCI setup to run tests properly Co-authored-by: roselyn <roselyn@thoughtmachine.net>
1 parent 5f84631 commit d2ec79a

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

tools/images/alpine/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.24-alpine
1+
FROM golang:1.26-alpine
22
LABEL org.opencontainers.image.authors="please <at> thoughtmachine <dot> net"
33
LABEL org.opencontainers.image.source=https://github.com/thought-machine/please
44

tools/images/freebsd_builder/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ LABEL org.opencontainers.image.source=https://github.com/thought-machine/please
66
RUN apt-get update && apt-get install -y curl git gcc xz-utils && apt-get clean
77

88
# Go
9-
RUN curl -fsSL https://dl.google.com/go/go1.24.1.linux-amd64.tar.gz | tar -xzC /usr/local
9+
RUN curl -fsSL https://dl.google.com/go/go1.26.1.linux-amd64.tar.gz | tar -xzC /usr/local
1010
RUN ln -s /usr/local/go/bin/go /usr/local/bin/go && ln -s /usr/local/go/bin/gofmt /usr/local/bin/gofmt
1111
RUN GOOS=freebsd go install std
1212

tools/images/ubuntu/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ RUN truncate -s0 /tmp/preseed.cfg; \
1616
apt-get clean
1717

1818
# Go - we want a specific package version here.
19-
RUN curl -fsSL https://dl.google.com/go/go1.24.1.linux-amd64.tar.gz | tar -xzC /usr/local
19+
RUN curl -fsSL https://dl.google.com/go/go1.26.1.linux-amd64.tar.gz | tar -xzC /usr/local
2020
RUN ln -s /usr/local/go/bin/go /usr/local/bin/go && ln -s /usr/local/go/bin/gofmt /usr/local/bin/gofmt
2121

2222
# Locale

tools/images/ubuntu_alt/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ RUN apt-get update && \
1111
apt-get clean
1212

1313
# Go
14-
RUN curl -fsSL https://dl.google.com/go/go1.23.7.linux-amd64.tar.gz | tar -xzC /usr/local
14+
RUN curl -fsSL https://dl.google.com/go/go1.26.1.linux-amd64.tar.gz | tar -xzC /usr/local
1515
RUN ln -s /usr/local/go/bin/go /usr/local/bin/go && ln -s /usr/local/go/bin/gofmt /usr/local/bin/gofmt
1616

1717
# Locale

0 commit comments

Comments
 (0)