Commit 58e78f3 1 parent bcd917f commit 58e78f3 Copy full SHA for 58e78f3
File tree 4 files changed +4
-4
lines changed
4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 9
9
# that flag starts the download asynchronously so we'd have a race
10
10
# condition.
11
11
# renovate: datasource=github-releases depName=hashicorp/terraform versioning=hashicorp
12
- TERRAFORM_VERSION : 1.5.5
12
+ TERRAFORM_VERSION : 1.5.6
13
13
steps :
14
14
- checkout
15
15
- run : make build-service
Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ RUN case ${TARGETPLATFORM} in \
121
121
122
122
# install terraform binaries
123
123
# renovate: datasource=github-releases depName=hashicorp/terraform versioning=hashicorp
124
- ENV DEFAULT_TERRAFORM_VERSION=1.5.5
124
+ ENV DEFAULT_TERRAFORM_VERSION=1.5.6
125
125
126
126
# In the official Atlantis image, we only have the latest of each Terraform version.
127
127
# Each binary is about 80 MB so we limit it to the 4 latest minor releases or fewer
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ import (
35
35
)
36
36
37
37
const hashicorpReleasesURL = "https://releases.hashicorp.com"
38
- const terraformVersion = "1.5.5 " // renovate: datasource=github-releases depName=hashicorp/terraform versioning=hashicorp
38
+ const terraformVersion = "1.5.6 " // renovate: datasource=github-releases depName=hashicorp/terraform versioning=hashicorp
39
39
const ngrokDownloadURL = "https://bin.equinox.io/c/4VmDzA7iaHb"
40
40
const ngrokAPIURL = "localhost:41414" // We hope this isn't used.
41
41
const atlantisPort = 4141
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ RUN apt-get update && apt-get --no-install-recommends -y install unzip \
6
6
7
7
# Install Terraform
8
8
# renovate: datasource=github-releases depName=hashicorp/terraform versioning=hashicorp
9
- ENV TERRAFORM_VERSION=1.5.5
9
+ ENV TERRAFORM_VERSION=1.5.6
10
10
RUN case $(uname -m) in x86_64|amd64) ARCH="amd64" ;; aarch64|arm64|armv7l) ARCH="arm64" ;; esac && \
11
11
wget -nv -O terraform.zip https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_${ARCH}.zip && \
12
12
mkdir -p /usr/local/bin/tf/versions/${TERRAFORM_VERSION} && \
You can’t perform that action at this time.
0 commit comments