diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ded62ab..7f395b8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,11 +26,12 @@ jobs: matrix: tf_version: - "0.11.14" - - "0.12.28" - - "0.13.0-rc1" + - "0.12.29" + - "0.13.1" awscli_version: - - "1.18.101" - - "1.18.102" + - "1.16.314" + - "1.17.17" + - "1.18.127" env: ORGANIZATION: "zenika" diff --git a/Dockerfile b/Dockerfile index 6e2ce34..0069a65 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ # Setup build arguments with default versions -ARG AWS_CLI_VERSION=1.18.102 -ARG TERRAFORM_VERSION=0.12.28 +ARG AWS_CLI_VERSION=1.18.127 +ARG TERRAFORM_VERSION=0.13.1 ARG PYTHON_MAJOR_VERSION=3.7 -ARG DEBIAN_VERSION=buster-20200514-slim +ARG DEBIAN_VERSION=buster-20200803-slim # Download Terraform binary FROM debian:${DEBIAN_VERSION} as terraform @@ -29,7 +29,7 @@ ARG PYTHON_MAJOR_VERSION RUN apt-get update RUN apt-get install -y --no-install-recommends python3=${PYTHON_MAJOR_VERSION}.3-1 RUN apt-get install -y --no-install-recommends python3-pip=18.1-5 -RUN pip3 install setuptools==47.1.1 +RUN pip3 install setuptools==49.6.0 RUN pip3 install awscli==${AWS_CLI_VERSION} # Build final image diff --git a/tests/container-structure-tests.yml b/tests/container-structure-tests.yml index 7167581..0c45fa8 100644 --- a/tests/container-structure-tests.yml +++ b/tests/container-structure-tests.yml @@ -26,9 +26,9 @@ commandTests: - name: "Check Terraform CLI version" command: "terraform" args: ["version"] - expectedOutput: ["Terraform v0.12.28"] + expectedOutput: ["Terraform v0.13.1"] - name: "Check AWS CLI version" command: "aws" args: ["--version"] - expectedOutput: ["aws-cli/1.18.102"] + expectedOutput: ["aws-cli/1.18.127"]