File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -54,14 +54,14 @@ RUN apt install -y libasan5
54
54
55
55
ENV PATH=$PATH:/usr/local/go/bin
56
56
RUN if [[ $TARGETARCH == 'amd64' ]]; then \
57
- curl -L https://go.dev/dl/go1.18.10 .linux-amd64.tar.gz |tar -xz -C /usr/local; \
57
+ curl -L https://go.dev/dl/go1.21.13 .linux-amd64.tar.gz |tar -xz -C /usr/local; \
58
58
fi
59
59
RUN if [[ $TARGETARCH == 'arm64' ]]; then \
60
- curl -L https://go.dev/dl/go1.18.10 .linux-arm64.tar.gz |tar -xz -C /usr/local; \
60
+ curl -L https://go.dev/dl/go1.21.13 .linux-arm64.tar.gz |tar -xz -C /usr/local; \
61
61
fi
62
62
# For linux/arm/v7, because ARMv6 is upwardly compatible with ARMv7.
63
63
RUN if [[ $TARGETARCH == 'arm' ]]; then \
64
- curl -L https://go.dev/dl/go1.18.10 .linux-armv6l.tar.gz |tar -xz -C /usr/local; \
64
+ curl -L https://go.dev/dl/go1.21.13 .linux-armv6l.tar.gz |tar -xz -C /usr/local; \
65
65
fi
66
66
67
67
# For utest, the gtest. See https://github.com/google/googletest/releases/tag/release-1.11.0
You can’t perform that action at this time.
0 commit comments