diff --git a/Dockerfile b/Dockerfile index 643180a..7b2069d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -35,7 +35,7 @@ RUN curl -k https://bootstrap.pypa.io/get-pip.py -o get-pip.py && \ # Install Ansible # Docs: https://docs.ansible.com/ansible/latest/installation_guide/intro_installation.html#installing-and-upgrading-ansible-with-pip -ARG ANSIBLE_VERSION=2.17.1 +ARG ANSIBLE_VERSION=2.17.2 RUN python3 -m pip install ansible-core==${ANSIBLE_VERSION} # Install Terraform @@ -48,7 +48,7 @@ RUN mkdir /tmp/terraform_env/ && \ rm -rf /tmp/terraform_env/ # Install Kubectl -ARG KUBECTL_VERSION=1.30.2 +ARG KUBECTL_VERSION=1.30.3 RUN mkdir /tmp/kubectl_env/ && \ cd /tmp/kubectl_env/ && \ curl -LO "https://dl.k8s.io/release/v$KUBECTL_VERSION/bin/linux/amd64/kubectl" && \ @@ -66,7 +66,7 @@ RUN mkdir /tmp/helm_env/ && \ rm -rf /tmp/helm_env/ # Install AwsCLI -ARG AWSCLI_VERSION=2.17.13 +ARG AWSCLI_VERSION=2.17.14 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 44e5641..55dd951 100644 --- a/README.md +++ b/README.md @@ -138,11 +138,11 @@ Built on `ubuntu:22.04` base image | Name | Version | Release | Usage | | :-------- | :---------------------- | :--------------------------------------------------------------------------- | :------------------------------------------------- | | Python | PYTHON_VERSION=3.11 | [Check](https://www.python.org/downloads/source/) | [python_usage](./docs/usage/python_usage.md) | -| Ansible | ANSIBLE_VERSION=2.17.1 | [Check](https://api.github.com/repos/ansible/ansible/releases/latest) | [ansible_usage](./docs/usage/ansible_usage.md) | +| Ansible | ANSIBLE_VERSION=2.17.2 | [Check](https://api.github.com/repos/ansible/ansible/releases/latest) | [ansible_usage](./docs/usage/ansible_usage.md) | | Terraform | TERRAFORM_VERSION=1.9.2 | [Check](https://releases.hashicorp.com/terraform/) | [terraform_usage](./docs/usage/terraform_usage.md) | -| Kubectl | KUBECTL_VERSION=1.30.2 | [Check](https://dl.k8s.io/release/stable.txt) | [kubectl_usage](./docs/usage/kubectl_usage.md) | +| Kubectl | KUBECTL_VERSION=1.30.3 | [Check](https://dl.k8s.io/release/stable.txt) | [kubectl_usage](./docs/usage/kubectl_usage.md) | | Helm | HELM_VERSION=3.15.3 | [Check](https://github.com/helm/helm/releases) | [helm_usage](./docs/usage/helm_usage.md) | -| AwsCLI | AWSCLI_VERSION=2.17.13 | [Check](https://raw.githubusercontent.com/aws/aws-cli/v2/CHANGELOG.rst) | [awscli_usage](./docs/usage/awscli_usage.md) | +| AwsCLI | AWSCLI_VERSION=2.17.14 | [Check](https://raw.githubusercontent.com/aws/aws-cli/v2/CHANGELOG.rst) | [awscli_usage](./docs/usage/awscli_usage.md) | | AzureCLI | AZURECLI_VERSION=2.62.0 | [Check](https://learn.microsoft.com/en-us/cli/azure/release-notes-azure-cli) | [azurecli_usage](./docs/usage/azurecli_usage.md) | And more tools to be implemented... diff --git a/pr-changelog.txt b/pr-changelog.txt index d31e9d8..019a533 100644 --- a/pr-changelog.txt +++ b/pr-changelog.txt @@ -1,7 +1,7 @@ core: update tool versions -- **terraform**: from `1.9.1` to `1.9.2` -- **helm**: from `3.15.2` to `3.15.3` -- **awscli**: from `2.17.9` to `2.17.13` +- **ansible**: from `2.17.1` to `2.17.2` +- **kubectl**: from `1.30.2` to `1.30.3` +- **awscli**: from `2.17.13` to `2.17.14` 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 3a7f668..baa8699 100644 --- a/toolkit_info.json +++ b/toolkit_info.json @@ -1,9 +1,9 @@ { "python3": "3.11", - "ansible": "2.17.1", + "ansible": "2.17.2", "terraform": "1.9.2", - "kubectl": "1.30.2", + "kubectl": "1.30.3", "helm": "3.15.3", - "awscli": "2.17.13", + "awscli": "2.17.14", "azurecli": "2.62.0" } \ No newline at end of file