Skip to content

Commit 0ad9e41

Browse files
committed
Adds support for terraform v0.12.0
1 parent b1f327c commit 0ad9e41

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
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.13
1+
FROM hashicorp/terraform:0.12.0
22

33
LABEL "com.github.actions.name"="terraform fmt"
44
LABEL "com.github.actions.description"="Validate terraform files are formatted"
@@ -9,7 +9,7 @@ LABEL "repository"="https://github.com/hashicorp/terraform-github-actions"
99
LABEL "homepage"="http://github.com/hashicorp/terraform-github-actions"
1010
LABEL "maintainer"="HashiCorp Terraform Team <[email protected]>"
1111

12-
RUN apk --no-cache add jq
12+
RUN apk --no-cache add jq curl
1313

1414
COPY entrypoint.sh /entrypoint.sh
1515
ENTRYPOINT ["/entrypoint.sh"]

init/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.13
1+
FROM hashicorp/terraform:0.12.0
22

33
LABEL "com.github.actions.name"="terraform init"
44
LABEL "com.github.actions.description"="Run terraform init"
@@ -9,7 +9,7 @@ LABEL "repository"="https://github.com/hashicorp/terraform-github-actions"
99
LABEL "homepage"="http://github.com/hashicorp/terraform-github-actions"
1010
LABEL "maintainer"="HashiCorp Terraform Team <[email protected]>"
1111

12-
RUN apk --no-cache add jq
12+
RUN apk --no-cache add jq curl
1313

1414
COPY entrypoint.sh /entrypoint.sh
1515
ENTRYPOINT ["/entrypoint.sh"]

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.13
1+
FROM hashicorp/terraform:0.12.0
22

33
LABEL "com.github.actions.name"="terraform plan"
44
LABEL "com.github.actions.description"="Run terraform plan"
@@ -9,7 +9,7 @@ LABEL "repository"="https://github.com/hashicorp/terraform-github-actions"
99
LABEL "homepage"="http://github.com/hashicorp/terraform-github-actions"
1010
LABEL "maintainer"="HashiCorp Terraform Team <[email protected]>"
1111

12-
RUN apk --no-cache add jq
12+
RUN apk --no-cache add jq curl
1313

1414
COPY entrypoint.sh /entrypoint.sh
1515
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.13
1+
FROM hashicorp/terraform:0.12.0
22

33
LABEL "com.github.actions.name"="terraform validate"
44
LABEL "com.github.actions.description"="Validate the terraform files in a directory"
@@ -9,7 +9,7 @@ LABEL "repository"="https://github.com/hashicorp/terraform-github-actions"
99
LABEL "homepage"="http://github.com/hashicorp/terraform-github-actions"
1010
LABEL "maintainer"="HashiCorp Terraform Team <[email protected]>"
1111

12-
RUN apk --no-cache add jq
12+
RUN apk --no-cache add jq curl
1313

1414
COPY entrypoint.sh /entrypoint.sh
1515
ENTRYPOINT ["/entrypoint.sh"]

0 commit comments

Comments
 (0)