Skip to content
This repository was archived by the owner on Nov 30, 2023. It is now read-only.

Commit e1698af

Browse files
author
CI
committed
Automated update of common script sources and hash
1 parent 8019a52 commit e1698af

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

containers/codespaces-linux/.devcontainer/library-scripts/go-debian.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ if [ "${TARGET_GO_VERSION}" != "none" ] && ! type go > /dev/null 2>&1; then
165165
gpg -q --import /tmp/tmp-gnupg/golang_key
166166
echo "Downloading Go ${TARGET_GO_VERSION}..."
167167
set +e
168-
curl -fsSL -o /tmp/go.tar.gz https://golang.org/dl/go1.177.linux-amd64.tar.gz
168+
curl -fsSL -o /tmp/go.tar.gz "https://golang.org/dl/go${TARGET_GO_VERSION}.linux-${architecture}.tar.gz"
169169
set -e
170170
if [ ! -s "/tmp/go.tar.gz" ] || [ "$?" != "0" ]; then
171171
echo "(!) Download failed."

containers/elixir-phoenix-postgres/.devcontainer/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ ARG USER_GID=$USER_UID
1111
# Options for common package install script
1212
ARG INSTALL_ZSH="true"
1313
ARG UPGRADE_PACKAGES="true"
14-
ARG COMMON_SCRIPT_SOURCE="https://raw.githubusercontent.com/microsoft/vscode-dev-containers/main/script-library/common-debian.sh"
15-
ARG COMMON_SCRIPT_SHA="dev-mode"
14+
ARG COMMON_SCRIPT_SOURCE="https://raw.githubusercontent.com/microsoft/vscode-dev-containers/v0.217.3/script-library/common-debian.sh"
15+
ARG COMMON_SCRIPT_SHA="d35dd1711454156c9a59cc41ebe04fbff681ca0bd304f10fd5b13285d0de13b2"
1616

1717
# Optional Settings for Phoenix
1818
ARG PHOENIX_VERSION="1.6.2"

containers/elixir/.devcontainer/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ ARG USER_GID=$USER_UID
1111
# Options for common package install script
1212
ARG INSTALL_ZSH="true"
1313
ARG UPGRADE_PACKAGES="true"
14-
ARG COMMON_SCRIPT_SOURCE="https://raw.githubusercontent.com/microsoft/vscode-dev-containers/main/script-library/common-debian.sh"
15-
ARG COMMON_SCRIPT_SHA="dev-mode"
14+
ARG COMMON_SCRIPT_SOURCE="https://raw.githubusercontent.com/microsoft/vscode-dev-containers/v0.217.3/script-library/common-debian.sh"
15+
ARG COMMON_SCRIPT_SHA="d35dd1711454156c9a59cc41ebe04fbff681ca0bd304f10fd5b13285d0de13b2"
1616

1717
# Install needed packages and setup non-root user. Use a separate RUN statement to add your own dependencies.
1818
RUN apt-get update \

containers/go/.devcontainer/library-scripts/go-debian.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ if [ "${TARGET_GO_VERSION}" != "none" ] && ! type go > /dev/null 2>&1; then
165165
gpg -q --import /tmp/tmp-gnupg/golang_key
166166
echo "Downloading Go ${TARGET_GO_VERSION}..."
167167
set +e
168-
curl -fsSL -o /tmp/go.tar.gz https://golang.org/dl/go1.177.linux-amd64.tar.gz
168+
curl -fsSL -o /tmp/go.tar.gz "https://golang.org/dl/go${TARGET_GO_VERSION}.linux-${architecture}.tar.gz"
169169
set -e
170170
if [ ! -s "/tmp/go.tar.gz" ] || [ "$?" != "0" ]; then
171171
echo "(!) Download failed."

0 commit comments

Comments
 (0)