File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 7
7
- name : Install Terraform
8
8
uses : hashicorp/setup-terraform@b9cd54a3c349d3f38e8881555d616ced269862dd # v3.1.2
9
9
with :
10
- terraform_version : 1.11.0
10
+ terraform_version : 1.11.2
11
11
terraform_wrapper : false
Original file line number Diff line number Diff line change 273
273
main () {
274
274
MAINLINE=1
275
275
STABLE=0
276
- TERRAFORM_VERSION=" 1.11.0 "
276
+ TERRAFORM_VERSION=" 1.11.2 "
277
277
278
278
if [ " ${TRACE-} " ]; then
279
279
set -x
Original file line number Diff line number Diff line change 22
22
// when Terraform is not available on the system.
23
23
// NOTE: Keep this in sync with the version in scripts/Dockerfile.base.
24
24
// NOTE: Keep this in sync with the version in install.sh.
25
- TerraformVersion = version .Must (version .NewVersion ("1.11.0 " ))
25
+ TerraformVersion = version .Must (version .NewVersion ("1.11.2 " ))
26
26
27
27
minTerraformVersion = version .Must (version .NewVersion ("1.1.0" ))
28
28
maxTerraformVersion = version .Must (version .NewVersion ("1.11.9" )) // use .9 to automatically allow patch releases
Original file line number Diff line number Diff line change 1
- 1.11.0
1
+ 1.11.2
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ RUN apk add --no-cache \
26
26
# Terraform was disabled in the edge repo due to a build issue.
27
27
# https://gitlab.alpinelinux.org/alpine/aports/-/commit/f3e263d94cfac02d594bef83790c280e045eba35
28
28
# Using wget for now. Note that busybox unzip doesn't support streaming.
29
- RUN ARCH="$(arch)"; if [ "${ARCH}" == "x86_64" ]; then ARCH="amd64"; elif [ "${ARCH}" == "aarch64" ]; then ARCH="arm64"; fi; wget -O /tmp/terraform.zip "https://releases.hashicorp.com/terraform/1.11.0 /terraform_1.11.0_linux_ ${ARCH}.zip" && \
29
+ RUN ARCH="$(arch)"; if [ "${ARCH}" == "x86_64" ]; then ARCH="amd64"; elif [ "${ARCH}" == "aarch64" ]; then ARCH="arm64"; fi; wget -O /tmp/terraform.zip "https://releases.hashicorp.com/terraform/1.11.2 /terraform_1.11.2_linux_ ${ARCH}.zip" && \
30
30
busybox unzip /tmp/terraform.zip -d /usr/local/bin && \
31
31
rm -f /tmp/terraform.zip && \
32
32
chmod +x /usr/local/bin/terraform && \
You can’t perform that action at this time.
0 commit comments