diff --git a/DEPENDENCIES.md b/DEPENDENCIES.md index 6490c2fccb..9886a50f31 100644 --- a/DEPENDENCIES.md +++ b/DEPENDENCIES.md @@ -3,7 +3,7 @@ following Free and Open Source software: Name Version License(s) ---- ------- ---------- - the Go language standard library ("std") v1.20.7 3-clause BSD license + the Go language standard library ("std") v1.20.8 3-clause BSD license github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 MIT license github.com/MakeNowJust/heredoc v1.0.0 MIT license github.com/Masterminds/goutils v1.1.1 Apache License 2.0 diff --git a/docker/base-python/Dockerfile b/docker/base-python/Dockerfile index 9d0c728b71..cebd1827e5 100644 --- a/docker/base-python/Dockerfile +++ b/docker/base-python/Dockerfile @@ -77,7 +77,7 @@ RUN apk --no-cache add \ # Pinning build version due to missing license info from pip show in newer versions RUN pip3 install "Cython<3.0" pip-tools==6.12.1 build==0.9.0 -RUN curl --fail -L https://dl.google.com/go/go1.20.7.linux-amd64.tar.gz | tar -C /usr/local -xzf - +RUN curl --fail -L https://dl.google.com/go/go1.20.8.linux-amd64.tar.gz | tar -C /usr/local -xzf - # The YAML parser is... special. To get the C version, we need to install Cython and libyaml, then # build it locally -- just using pip won't work.