From cc9727a780ce6c90af37f5387be518cc54bf6687 Mon Sep 17 00:00:00 2001 From: tungbq <85242618+tungbq@users.noreply.github.com> Date: Sat, 24 Aug 2024 00:24:30 +0000 Subject: [PATCH] core: update tool versions --- Dockerfile | 6 +++--- README.md | 6 +++--- pr-changelog.txt | 6 ++---- toolkit_info.json | 6 +++--- 4 files changed, 11 insertions(+), 13 deletions(-) diff --git a/Dockerfile b/Dockerfile index e626ed5..a08cb00 100644 --- a/Dockerfile +++ b/Dockerfile @@ -46,7 +46,7 @@ ARG ANSIBLE_VERSION=2.17.3 RUN python3 -m pip install ansible-core==${ANSIBLE_VERSION} # Install Terraform -ARG TERRAFORM_VERSION=1.9.4 +ARG TERRAFORM_VERSION=1.9.5 RUN mkdir /tmp/terraform_env/ && \ cd /tmp/terraform_env/ && \ wget https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_amd64.zip && \ @@ -73,7 +73,7 @@ RUN mkdir /tmp/helm_env/ && \ rm -rf /tmp/helm_env/ # Install AwsCLI -ARG AWSCLI_VERSION=2.17.32 +ARG AWSCLI_VERSION=2.17.37 RUN mkdir /tmp/awscli_env/ && \ cd /tmp/awscli_env/ && \ wget "https://awscli.amazonaws.com/awscli-exe-linux-x86_64-${AWSCLI_VERSION}.zip" && \ @@ -95,7 +95,7 @@ RUN mkdir -p /etc/apt/keyrings && \ apt-get install --no-install-recommends -y azure-cli=$AZURECLI_VERSION-1~$AZ_DIST # PowerShell Installation -ARG PS_VERSION=7.4.4 +ARG PS_VERSION=7.4.5 ARG PS_PACKAGE=powershell_${PS_VERSION}-1.deb_amd64.deb ARG PS_PACKAGE_URL=https://github.com/PowerShell/PowerShell/releases/download/v${PS_VERSION}/${PS_PACKAGE} ARG PS_INSTALL_VERSION=7 diff --git a/README.md b/README.md index 766deca..7028282 100644 --- a/README.md +++ b/README.md @@ -139,12 +139,12 @@ 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.3 | [Check](https://api.github.com/repos/ansible/ansible/releases/latest) | [ansible_usage](./docs/usage/ansible_usage.md) | -| Terraform | TERRAFORM_VERSION=1.9.4 | [Check](https://releases.hashicorp.com/terraform/) | [terraform_usage](./docs/usage/terraform_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) | | Helm | HELM_VERSION=3.15.4 | [Check](https://github.com/helm/helm/releases) | [helm_usage](./docs/usage/helm_usage.md) | -| AwsCLI | AWSCLI_VERSION=2.17.32 | [Check](https://raw.githubusercontent.com/aws/aws-cli/v2/CHANGELOG.rst) | [awscli_usage](./docs/usage/awscli_usage.md) | +| AwsCLI | AWSCLI_VERSION=2.17.37 | [Check](https://raw.githubusercontent.com/aws/aws-cli/v2/CHANGELOG.rst) | [awscli_usage](./docs/usage/awscli_usage.md) | | AzureCLI | AZURECLI_VERSION=2.63.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.4 | [Check](https://github.com/PowerShell/PowerShell/releases) | TODO | +| PowerShell | PS_VERSION=7.4.5 | [Check](https://github.com/PowerShell/PowerShell/releases) | TODO | And more tools to be implemented... diff --git a/pr-changelog.txt b/pr-changelog.txt index 968ee93..3338669 100644 --- a/pr-changelog.txt +++ b/pr-changelog.txt @@ -1,8 +1,6 @@ core: update tool versions -- **ansible**: from `2.17.2` to `2.17.3` -- **kubectl**: from `1.30.3` to `1.31.0` -- **helm**: from `3.15.3` to `3.15.4` -- **awscli**: from `2.17.27` to `2.17.32` +- **terraform**: from `1.9.4` to `1.9.5` +- **awscli**: from `2.17.32` to `2.17.37` 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 87f9e74..e1814f1 100644 --- a/toolkit_info.json +++ b/toolkit_info.json @@ -1,10 +1,10 @@ { "python3": "3.11", "ansible": "2.17.3", - "terraform": "1.9.4", + "terraform": "1.9.5", "kubectl": "1.31.0", "helm": "3.15.4", - "awscli": "2.17.32", + "awscli": "2.17.37", "azurecli": "2.63.0", - "pwsh": "7.4.4" + "pwsh": "7.4.5" } \ No newline at end of file