Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump golang from 1.20.6 to 1.20.7 #432

Merged
merged 1 commit into from
Aug 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions circleci/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ RUN set -ex \
xz-utils

# Golang
ENV GO_VERSION 1.20.6
ENV GO_VERSION 1.20.7
ENV GOPATH /go
RUN curl -sL -o /tmp/golang.tar.gz https://go.dev/dl/go$GO_VERSION.linux-amd64.tar.gz \
&& echo "b945ae2bb5db01a0fb4786afde64e6fbab50b67f6fa0eb6cfa4924f16a7ff1eb /tmp/golang.tar.gz" | sha256sum --check \
&& echo "f0a87f1bcae91c4b69f8dc2bc6d7e6bfcd7524fceec130af525058c0c17b1b44 /tmp/golang.tar.gz" | sha256sum --check \
&& tar -C /usr/local -xzf /tmp/golang.tar.gz \
&& rm -f /tmp/golang.tar.gz
ENV PATH="/usr/local/go/bin:${PATH}"
Expand Down
6 changes: 3 additions & 3 deletions deb-arm/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ RUN echo "${CURL_AARCH64_SHA256} curl-aarch64" | sha256sum --check
FROM ${BASE_IMAGE}

# Build Args
ARG GO_VERSION=1.20.6
ARG GO_VERSION=1.20.7
ARG CMAKE_VERSION=3.23.0
ARG CMAKE_SHA256="9f8d42ef0b33d1bea47afe15875435dac58503d6a3b58842b473fd811e6df172"
ARG CLANG_VERSION=8.0.0
Expand Down Expand Up @@ -83,13 +83,13 @@ RUN echo 'source /usr/local/rvm/scripts/rvm' >> /root/.bashrc
# Go
RUN if [ "$DD_TARGET_ARCH" = "aarch64" ] ; then \
curl -sL -o /tmp/golang.tar.gz https://go.dev/dl/go$GO_VERSION.linux-arm64.tar.gz \
&& echo "4e15ab37556e979181a1a1cc60f6d796932223a0f5351d7c83768b356f84429b /tmp/golang.tar.gz" | sha256sum --check \
&& echo "44781ae3b153c3b07651d93b6bc554e835a36e2d72a696281c1e4dad9efffe43 /tmp/golang.tar.gz" | sha256sum --check \
&& tar -C /usr/local -xzf /tmp/golang.tar.gz \
&& rm -f /tmp/golang.tar.gz ; fi

RUN if [ "$DD_TARGET_ARCH" = "armhf" ] ; then \
curl -sL -o /tmp/golang.tar.gz https://go.dev/dl/go$GO_VERSION.linux-armv6l.tar.gz \
&& echo "669902f5c8efefbd5d5fd078db01e34355af3693e48659b89593da7db367c488 /tmp/golang.tar.gz" | sha256sum --check \
&& echo "7cc231b415b94f2f7065870a73f67dd2b0ec12b5a98052b7ee0121c42bc04f8d /tmp/golang.tar.gz" | sha256sum --check \
&& tar -C /usr/local -xzf /tmp/golang.tar.gz \
&& rm -f /tmp/golang.tar.gz ; fi

Expand Down
2 changes: 1 addition & 1 deletion deb-x64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ FROM ubuntu:14.04
# Build Args
ARG GIT_VERSION=2.10.1
ARG GIT_SHA256="78553f786f1a66cb68983c170be482558028a3376056c0f2ed366f331b1e35f2"
ARG GO_VERSION=1.20.6
ARG GO_VERSION=1.20.7
ARG IBM_MQ_VERSION=9.2.4.0
ARG IBM_MQ_SHA256="d0d583eba72daf20b3762976f8831c2e23150ace90509520e12f8cda5b5bdb49"
ARG CMAKE_VERSION=3.23.0
Expand Down
4 changes: 2 additions & 2 deletions rpm-arm64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ RUN echo "${CACERT_BUNDLE_SHA256} /cacert.pem" | sha256sum --check
FROM ${BASE_IMAGE}

# Build Args
ARG GO_VERSION=1.20.6
ARG GO_VERSION=1.20.7
ARG CMAKE_VERSION=3.23.0
ARG CMAKE_SHA256="9f8d42ef0b33d1bea47afe15875435dac58503d6a3b58842b473fd811e6df172"
ARG CLANG_VERSION=8.0.0
Expand Down Expand Up @@ -84,7 +84,7 @@ RUN echo 'source /usr/local/rvm/scripts/rvm' >> /root/.bashrc

# Go
RUN curl -sL -o /tmp/golang.tar.gz https://go.dev/dl/go$GO_VERSION.linux-arm64.tar.gz \
&& echo "4e15ab37556e979181a1a1cc60f6d796932223a0f5351d7c83768b356f84429b /tmp/golang.tar.gz" | sha256sum --check \
&& echo "44781ae3b153c3b07651d93b6bc554e835a36e2d72a696281c1e4dad9efffe43 /tmp/golang.tar.gz" | sha256sum --check \
&& tar -C /usr/local -xzf /tmp/golang.tar.gz \
&& rm -f /tmp/golang.tar.gz
ENV PATH="/usr/local/go/bin:${PATH}"
Expand Down
4 changes: 2 additions & 2 deletions rpm-armhf/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ RUN echo "${CACERT_BUNDLE_SHA256} /cacert.pem" | sha256sum --check
FROM ${BASE_IMAGE}

# Build Args
ARG GO_VERSION=1.20.6
ARG GO_VERSION=1.20.7
ARG DD_TARGET_ARCH=armhf

# Environment
Expand Down Expand Up @@ -91,7 +91,7 @@ RUN ./setup_python.sh

# Go
RUN curl -sL -o /tmp/golang.tar.gz https://go.dev/dl/go$GO_VERSION.linux-armv6l.tar.gz \
&& echo "669902f5c8efefbd5d5fd078db01e34355af3693e48659b89593da7db367c488 /tmp/golang.tar.gz" | sha256sum --check \
&& echo "7cc231b415b94f2f7065870a73f67dd2b0ec12b5a98052b7ee0121c42bc04f8d /tmp/golang.tar.gz" | sha256sum --check \
&& tar -C /usr/local -xzf /tmp/golang.tar.gz \
&& rm -f /tmp/golang.tar.gz
ENV PATH="/usr/local/go/bin:${PATH}"
Expand Down
4 changes: 2 additions & 2 deletions rpm-x64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ ARG BASE_IMAGE
# Build Args
ARG GIT_VERSION=2.10.1
ARG GIT_SHA256="78553f786f1a66cb68983c170be482558028a3376056c0f2ed366f331b1e35f2"
ARG GO_VERSION=1.20.6
ARG GO_VERSION=1.20.7
ARG IBM_MQ_VERSION=9.2.4.0
ARG IBM_MQ_SHA256="d0d583eba72daf20b3762976f8831c2e23150ace90509520e12f8cda5b5bdb49"
ARG CMAKE_VERSION=3.23.0
Expand Down Expand Up @@ -180,7 +180,7 @@ RUN ln -sf /usr/local/binutils/bin/ld /usr/bin/ld

# Go
RUN curl -sL -o /tmp/golang.tar.gz https://go.dev/dl/go$GO_VERSION.linux-amd64.tar.gz \
&& echo "b945ae2bb5db01a0fb4786afde64e6fbab50b67f6fa0eb6cfa4924f16a7ff1eb /tmp/golang.tar.gz" | sha256sum --check \
&& echo "f0a87f1bcae91c4b69f8dc2bc6d7e6bfcd7524fceec130af525058c0c17b1b44 /tmp/golang.tar.gz" | sha256sum --check \
&& tar -C /usr/local -xzf /tmp/golang.tar.gz \
&& rm -f /tmp/golang.tar.gz
ENV PATH="/usr/local/go/bin:${PATH}"
Expand Down
4 changes: 2 additions & 2 deletions suse-x64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ RUN echo "${CACERT_BUNDLE_SHA256} /cacert.pem" | sha256sum --check
FROM opensuse/archive:42.1

# Build Args
ARG GO_VERSION=1.20.6
ARG GO_VERSION=1.20.7
ARG IBM_MQ_VERSION=9.2.4.0
ARG IBM_MQ_SHA256="d0d583eba72daf20b3762976f8831c2e23150ace90509520e12f8cda5b5bdb49"
ARG CMAKE_VERSION=3.23.0
Expand Down Expand Up @@ -84,7 +84,7 @@ RUN chmod +x /opt/datadog/bin/curl

# Go
RUN curl -sL -o /tmp/golang.tar.gz https://go.dev/dl/go$GO_VERSION.linux-amd64.tar.gz \
&& echo "b945ae2bb5db01a0fb4786afde64e6fbab50b67f6fa0eb6cfa4924f16a7ff1eb /tmp/golang.tar.gz" | sha256sum --check \
&& echo "f0a87f1bcae91c4b69f8dc2bc6d7e6bfcd7524fceec130af525058c0c17b1b44 /tmp/golang.tar.gz" | sha256sum --check \
&& tar -C /usr/local -xzf /tmp/golang.tar.gz \
&& rm -f /tmp/golang.tar.gz
ENV PATH="/usr/local/go/bin:${PATH}"
Expand Down
4 changes: 2 additions & 2 deletions system-probe_arm64/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM debian:buster

ARG DEBIAN_FRONTEND=noninteractive
ARG GO_VERSION=1.20.6
ARG GO_SHA256=4e15ab37556e979181a1a1cc60f6d796932223a0f5351d7c83768b356f84429b
ARG GO_VERSION=1.20.7
ARG GO_SHA256=44781ae3b153c3b07651d93b6bc554e835a36e2d72a696281c1e4dad9efffe43

# We need up-to-date kernel headers to be able to use newly available eBPF helpers in programs.
RUN echo "deb http://deb.debian.org/debian buster-backports main" | tee -a /etc/apt/sources.list
Expand Down
4 changes: 2 additions & 2 deletions system-probe_x64/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM debian:buster

ARG DEBIAN_FRONTEND=noninteractive
ARG GO_VERSION=1.20.6
ARG GO_SHA256=b945ae2bb5db01a0fb4786afde64e6fbab50b67f6fa0eb6cfa4924f16a7ff1eb
ARG GO_VERSION=1.20.7
ARG GO_SHA256=f0a87f1bcae91c4b69f8dc2bc6d7e6bfcd7524fceec130af525058c0c17b1b44

# We need up-to-date kernel headers to be able to use newly available eBPF helpers in programs.
RUN echo "deb http://deb.debian.org/debian buster-backports main" | tee -a /etc/apt/sources.list
Expand Down
4 changes: 2 additions & 2 deletions windows/versions.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ $SoftwareTable = @{
"VS2017BUILDTOOLS_DOWNLOAD_URL"="https://download.visualstudio.microsoft.com/download/pr/9b3476ff-6d0a-4ff8-956d-270147f21cd4/ccfb9355f4f753315455542f966025f96de734292d3908c8c3717e9685b709f0/vs_BuildTools.exe";
"VS2019INSTALLER_DOWNLOAD_URL"="https://download.visualstudio.microsoft.com/download/pr/3a7354bc-d2e4-430f-92d0-9abd031b5ee5/d9fc228ea71a98adc7bc5f5d8e8800684c647e955601ed721fcb29f74ace7536/vs_Community.exe";
"VS2019INSTALLER_SHA256"="d9fc228ea71a98adc7bc5f5d8e8800684c647e955601ed721fcb29f74ace7536";
"GO_VERSION"="1.20.6";
"GO_SHA256"="b67dd7f2b4589701e53c98e348e1b4d9a7c3536dc316941172b2f0b60ae4ce5f";
"GO_VERSION"="1.20.7";
"GO_SHA256"="736dc6c7fcab1c96b682c8c93e38d7e371e62a17d34cb2c37d451a1147f66af9";
"RUBY_VERSION"="2.6.6-1";
"RUBY_SHA256"="fbdf77a3e1fa36e25cf0af1303ac76f67dec7a6f739a829784a299702cad1492";
"IBM_MQ_VERSION"="9.2.4.0";
Expand Down