Skip to content

Commit 44c3f96

Browse files
authored
⬆️ Updated CLI, tooling and base image version for next release (#37)
* ⬆️ bump default terraform, AWS cli and pip version, update tests, upgrade base debian image * ⬆️ update supported Terraform and AWS cli version for next release
1 parent f7e46e4 commit 44c3f96

File tree

3 files changed

+11
-10
lines changed

3 files changed

+11
-10
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,12 @@ jobs:
2626
matrix:
2727
tf_version:
2828
- "0.11.14"
29-
- "0.12.28"
30-
- "0.13.0-rc1"
29+
- "0.12.29"
30+
- "0.13.1"
3131
awscli_version:
32-
- "1.18.101"
33-
- "1.18.102"
32+
- "1.16.314"
33+
- "1.17.17"
34+
- "1.18.127"
3435

3536
env:
3637
ORGANIZATION: "zenika"

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Setup build arguments with default versions
2-
ARG AWS_CLI_VERSION=1.18.102
3-
ARG TERRAFORM_VERSION=0.12.28
2+
ARG AWS_CLI_VERSION=1.18.127
3+
ARG TERRAFORM_VERSION=0.13.1
44
ARG PYTHON_MAJOR_VERSION=3.7
5-
ARG DEBIAN_VERSION=buster-20200514-slim
5+
ARG DEBIAN_VERSION=buster-20200803-slim
66

77
# Download Terraform binary
88
FROM debian:${DEBIAN_VERSION} as terraform
@@ -29,7 +29,7 @@ ARG PYTHON_MAJOR_VERSION
2929
RUN apt-get update
3030
RUN apt-get install -y --no-install-recommends python3=${PYTHON_MAJOR_VERSION}.3-1
3131
RUN apt-get install -y --no-install-recommends python3-pip=18.1-5
32-
RUN pip3 install setuptools==47.1.1
32+
RUN pip3 install setuptools==49.6.0
3333
RUN pip3 install awscli==${AWS_CLI_VERSION}
3434

3535
# Build final image

tests/container-structure-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ commandTests:
2626
- name: "Check Terraform CLI version"
2727
command: "terraform"
2828
args: ["version"]
29-
expectedOutput: ["Terraform v0.12.28"]
29+
expectedOutput: ["Terraform v0.13.1"]
3030

3131
- name: "Check AWS CLI version"
3232
command: "aws"
3333
args: ["--version"]
34-
expectedOutput: ["aws-cli/1.18.102"]
34+
expectedOutput: ["aws-cli/1.18.127"]

0 commit comments

Comments
 (0)