Skip to content

Commit f980870

Browse files
committed
Update base Docker image version to be v0.11.10
This is needed as users may have statefiles that have been applied using the latest terraform version but are seeing failures when running the Github Actions.
1 parent 39bc60f commit f980870

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

fmt/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM hashicorp/terraform:0.11.8
1+
FROM hashicorp/terraform:0.11.10
22

33
LABEL "com.github.actions.name"="terraform fmt"
44
LABEL "com.github.actions.description"="Validate terraform files are formatted"
@@ -12,4 +12,4 @@ LABEL "maintainer"="HashiCorp Terraform Team <[email protected]>"
1212
RUN apk --no-cache add jq
1313

1414
COPY entrypoint.sh /entrypoint.sh
15-
ENTRYPOINT ["/entrypoint.sh"]
15+
ENTRYPOINT ["/entrypoint.sh"]

init/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM hashicorp/terraform:0.11.8
1+
FROM hashicorp/terraform:0.11.10
22

33
LABEL "com.github.actions.name"="terraform init"
44
LABEL "com.github.actions.description"="Run terraform init"

plan/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM hashicorp/terraform:0.11.8
1+
FROM hashicorp/terraform:0.11.10
22

33
LABEL "com.github.actions.name"="terraform plan"
44
LABEL "com.github.actions.description"="Run terraform plan"
@@ -12,4 +12,4 @@ LABEL "maintainer"="HashiCorp Terraform Team <[email protected]>"
1212
RUN apk --no-cache add jq
1313

1414
COPY entrypoint.sh /entrypoint.sh
15-
ENTRYPOINT ["/entrypoint.sh"]
15+
ENTRYPOINT ["/entrypoint.sh"]

validate/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM hashicorp/terraform:0.11.8
1+
FROM hashicorp/terraform:0.11.10
22

33
LABEL "com.github.actions.name"="terraform validate"
44
LABEL "com.github.actions.description"="Validate the terraform files in a directory"
@@ -12,4 +12,4 @@ LABEL "maintainer"="HashiCorp Terraform Team <[email protected]>"
1212
RUN apk --no-cache add jq
1313

1414
COPY entrypoint.sh /entrypoint.sh
15-
ENTRYPOINT ["/entrypoint.sh"]
15+
ENTRYPOINT ["/entrypoint.sh"]

0 commit comments

Comments
 (0)