diff --git a/Dockerfile b/Dockerfile index b8d128a..19b4f98 100644 --- a/Dockerfile +++ b/Dockerfile @@ -46,7 +46,7 @@ ARG ANSIBLE_VERSION=2.17.4 RUN python3 -m pip install ansible-core==${ANSIBLE_VERSION} # Install Terraform -ARG TERRAFORM_VERSION=1.9.5 +ARG TERRAFORM_VERSION=1.9.6 RUN mkdir /tmp/terraform_env/ && \ cd /tmp/terraform_env/ && \ wget https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_amd64.zip && \ @@ -55,7 +55,7 @@ RUN mkdir /tmp/terraform_env/ && \ rm -rf /tmp/terraform_env/ # Install Kubectl -ARG KUBECTL_VERSION=1.31.0 +ARG KUBECTL_VERSION=1.31.1 RUN mkdir /tmp/kubectl_env/ && \ cd /tmp/kubectl_env/ && \ curl -LO "https://dl.k8s.io/release/v$KUBECTL_VERSION/bin/linux/amd64/kubectl" && \ @@ -73,7 +73,7 @@ RUN mkdir /tmp/helm_env/ && \ rm -rf /tmp/helm_env/ # Install AwsCLI -ARG AWSCLI_VERSION=2.17.51 +ARG AWSCLI_VERSION=2.17.61 RUN mkdir /tmp/awscli_env/ && \ cd /tmp/awscli_env/ && \ wget "https://awscli.amazonaws.com/awscli-exe-linux-x86_64-${AWSCLI_VERSION}.zip" && \ diff --git a/README.md b/README.md index b3d32c2..1f6fc55 100644 --- a/README.md +++ b/README.md @@ -165,10 +165,10 @@ Built on `ubuntu:22.04` base image | :--------- | :---------------------- | :--------------------------------------------------------------------------- | :------------------------------------------------- | | Python | PYTHON_VERSION=3.11 | [Check](https://www.python.org/downloads/source/) | [python_usage](./docs/usage/python_usage.md) | | Ansible | ANSIBLE_VERSION=2.17.4 | [Check](https://api.github.com/repos/ansible/ansible/releases/latest) | [ansible_usage](./docs/usage/ansible_usage.md) | -| Terraform | TERRAFORM_VERSION=1.9.5 | [Check](https://releases.hashicorp.com/terraform/) | [terraform_usage](./docs/usage/terraform_usage.md) | -| Kubectl | KUBECTL_VERSION=1.31.0 | [Check](https://dl.k8s.io/release/stable.txt) | [kubectl_usage](./docs/usage/kubectl_usage.md) | +| Terraform | TERRAFORM_VERSION=1.9.6 | [Check](https://releases.hashicorp.com/terraform/) | [terraform_usage](./docs/usage/terraform_usage.md) | +| Kubectl | KUBECTL_VERSION=1.31.1 | [Check](https://dl.k8s.io/release/stable.txt) | [kubectl_usage](./docs/usage/kubectl_usage.md) | | Helm | HELM_VERSION=3.16.1 | [Check](https://github.com/helm/helm/releases) | [helm_usage](./docs/usage/helm_usage.md) | -| AwsCLI | AWSCLI_VERSION=2.17.51 | [Check](https://raw.githubusercontent.com/aws/aws-cli/v2/CHANGELOG.rst) | [awscli_usage](./docs/usage/awscli_usage.md) | +| AwsCLI | AWSCLI_VERSION=2.17.61 | [Check](https://raw.githubusercontent.com/aws/aws-cli/v2/CHANGELOG.rst) | [awscli_usage](./docs/usage/awscli_usage.md) | | AzureCLI | AZURECLI_VERSION=2.64.0 | [Check](https://learn.microsoft.com/en-us/cli/azure/release-notes-azure-cli) | [azurecli_usage](./docs/usage/azurecli_usage.md) | | PowerShell | PS_VERSION=7.4.5 | [Check](https://github.com/PowerShell/PowerShell/releases) | TODO | diff --git a/pr-changelog.txt b/pr-changelog.txt index 8aeabf6..7f41722 100644 --- a/pr-changelog.txt +++ b/pr-changelog.txt @@ -1,7 +1,7 @@ core: update tool versions -- **ansible**: from `2.17.3` to `2.17.4` -- **helm**: from `3.15.4` to `3.16.1` -- **awscli**: from `2.17.46` to `2.17.51` +- **terraform**: from `1.9.5` to `1.9.6` +- **kubectl**: from `1.31.0` to `1.31.1` +- **awscli**: from `2.17.51` to `2.17.61` Auto-generated by [create-pull-request](https://github.com/peter-evans/create-pull-request) diff --git a/toolkit_info.json b/toolkit_info.json index 05c6274..d7df4d1 100644 --- a/toolkit_info.json +++ b/toolkit_info.json @@ -1,10 +1,10 @@ { "python3": "3.11", "ansible": "2.17.4", - "terraform": "1.9.5", - "kubectl": "1.31.0", + "terraform": "1.9.6", + "kubectl": "1.31.1", "helm": "3.16.1", - "awscli": "2.17.51", + "awscli": "2.17.61", "azurecli": "2.64.0", "pwsh": "7.4.5" } \ No newline at end of file