Skip to content

Commit 55edd45

Browse files
authored
core: update tool versions (#239)
1 parent a651766 commit 55edd45

File tree

4 files changed

+27
-26
lines changed

4 files changed

+27
-26
lines changed

Dockerfile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,11 @@ RUN curl -k https://bootstrap.pypa.io/get-pip.py -o get-pip.py && \
4242
rm get-pip.py
4343

4444
# Install Ansible
45-
ARG ANSIBLE_VERSION=2.17.5
45+
ARG ANSIBLE_VERSION=2.18.1
4646
RUN python3 -m pip install ansible-core==${ANSIBLE_VERSION}
4747

4848
# Install Terraform
49-
ARG TERRAFORM_VERSION=1.9.8
49+
ARG TERRAFORM_VERSION=1.10.3
5050
RUN mkdir /tmp/terraform_env/ && \
5151
cd /tmp/terraform_env/ && \
5252
wget https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_amd64.zip && \
@@ -55,7 +55,7 @@ RUN mkdir /tmp/terraform_env/ && \
5555
rm -rf /tmp/terraform_env/
5656

5757
# Install Kubectl
58-
ARG KUBECTL_VERSION=1.31.1
58+
ARG KUBECTL_VERSION=1.32.0
5959
RUN mkdir /tmp/kubectl_env/ && \
6060
cd /tmp/kubectl_env/ && \
6161
curl -LO "https://dl.k8s.io/release/v$KUBECTL_VERSION/bin/linux/amd64/kubectl" && \
@@ -64,7 +64,7 @@ RUN mkdir /tmp/kubectl_env/ && \
6464
rm -rf /tmp/kubectl_env/
6565

6666
# Install Helm
67-
ARG HELM_VERSION=3.16.2
67+
ARG HELM_VERSION=3.16.4
6868
RUN mkdir /tmp/helm_env/ && \
6969
cd /tmp/helm_env/ && \
7070
wget https://get.helm.sh/helm-v${HELM_VERSION}-linux-amd64.tar.gz && \
@@ -73,7 +73,7 @@ RUN mkdir /tmp/helm_env/ && \
7373
rm -rf /tmp/helm_env/
7474

7575
# Install AwsCLI
76-
ARG AWSCLI_VERSION=2.18.10
76+
ARG AWSCLI_VERSION=2.22.23
7777
RUN mkdir /tmp/awscli_env/ && \
7878
cd /tmp/awscli_env/ && \
7979
wget "https://awscli.amazonaws.com/awscli-exe-linux-x86_64-${AWSCLI_VERSION}.zip" && \
@@ -82,7 +82,7 @@ RUN mkdir /tmp/awscli_env/ && \
8282
rm -rf /tmp/awscli_env/
8383

8484
# Install AzureCLI
85-
ARG AZURECLI_VERSION=2.65.0
85+
ARG AZURECLI_VERSION=2.67.0
8686
RUN mkdir -p /etc/apt/keyrings && \
8787
curl -sLS https://packages.microsoft.com/keys/microsoft.asc | \
8888
gpg --dearmor | \
@@ -95,7 +95,7 @@ RUN mkdir -p /etc/apt/keyrings && \
9595
apt-get install --no-install-recommends -y azure-cli=$AZURECLI_VERSION-1~$AZ_DIST
9696

9797
# PowerShell Installation
98-
ARG PS_VERSION=7.4.5
98+
ARG PS_VERSION=7.4.6
9999
ARG PS_PACKAGE=powershell_${PS_VERSION}-1.deb_amd64.deb
100100
ARG PS_PACKAGE_URL=https://github.com/PowerShell/PowerShell/releases/download/v${PS_VERSION}/${PS_PACKAGE}
101101
ARG PS_INSTALL_VERSION=7

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -164,13 +164,13 @@ Built on `ubuntu:22.04` base image
164164
| Name | Version | Release | Usage |
165165
| :--------- | :---------------------- | :--------------------------------------------------------------------------- | :------------------------------------------------- |
166166
| Python | PYTHON_VERSION=3.11 | [Check](https://www.python.org/downloads/source/) | [python_usage](./docs/usage/python_usage.md) |
167-
| Ansible | ANSIBLE_VERSION=2.17.5 | [Check](https://api.github.com/repos/ansible/ansible/releases/latest) | [ansible_usage](./docs/usage/ansible_usage.md) |
168-
| Terraform | TERRAFORM_VERSION=1.9.8 | [Check](https://releases.hashicorp.com/terraform/) | [terraform_usage](./docs/usage/terraform_usage.md) |
169-
| Kubectl | KUBECTL_VERSION=1.31.1 | [Check](https://dl.k8s.io/release/stable.txt) | [kubectl_usage](./docs/usage/kubectl_usage.md) |
170-
| Helm | HELM_VERSION=3.16.2 | [Check](https://github.com/helm/helm/releases) | [helm_usage](./docs/usage/helm_usage.md) |
171-
| AwsCLI | AWSCLI_VERSION=2.18.10 | [Check](https://raw.githubusercontent.com/aws/aws-cli/v2/CHANGELOG.rst) | [awscli_usage](./docs/usage/awscli_usage.md) |
172-
| AzureCLI | AZURECLI_VERSION=2.65.0 | [Check](https://learn.microsoft.com/en-us/cli/azure/release-notes-azure-cli) | [azurecli_usage](./docs/usage/azurecli_usage.md) |
173-
| PowerShell | PS_VERSION=7.4.5 | [Check](https://github.com/PowerShell/PowerShell/releases) | TODO |
167+
| Ansible | ANSIBLE_VERSION=2.18.1 | [Check](https://api.github.com/repos/ansible/ansible/releases/latest) | [ansible_usage](./docs/usage/ansible_usage.md) |
168+
| Terraform | TERRAFORM_VERSION=1.10.3 | [Check](https://releases.hashicorp.com/terraform/) | [terraform_usage](./docs/usage/terraform_usage.md) |
169+
| Kubectl | KUBECTL_VERSION=1.32.0 | [Check](https://dl.k8s.io/release/stable.txt) | [kubectl_usage](./docs/usage/kubectl_usage.md) |
170+
| Helm | HELM_VERSION=3.16.4 | [Check](https://github.com/helm/helm/releases) | [helm_usage](./docs/usage/helm_usage.md) |
171+
| AwsCLI | AWSCLI_VERSION=2.22.23 | [Check](https://raw.githubusercontent.com/aws/aws-cli/v2/CHANGELOG.rst) | [awscli_usage](./docs/usage/awscli_usage.md) |
172+
| AzureCLI | AZURECLI_VERSION=2.67.0 | [Check](https://learn.microsoft.com/en-us/cli/azure/release-notes-azure-cli) | [azurecli_usage](./docs/usage/azurecli_usage.md) |
173+
| PowerShell | PS_VERSION=7.4.6 | [Check](https://github.com/PowerShell/PowerShell/releases) | TODO |
174174

175175
And more tools to be implemented...
176176

pr-changelog.txt

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
core: update tool versions
22

3-
- **ansible**: from `2.17.4` to `2.17.5`
4-
- **terraform**: from `1.9.7` to `1.9.8`
5-
- **helm**: from `3.16.1` to `3.16.2`
6-
- **awscli**: from `2.18.0` to `2.18.10`
7-
- **azurecli**: from `2.64.0` to `2.65.0`
3+
- **ansible**: from `2.17.5` to `2.18.1`
4+
- **terraform**: from `1.9.8` to `1.10.3`
5+
- **kubectl**: from `1.31.1` to `1.32.0`
6+
- **helm**: from `3.16.2` to `3.16.4`
7+
- **awscli**: from `2.18.10` to `2.22.23`
8+
- **azurecli**: from `2.65.0` to `2.67.0`
89

910
Auto-generated by [create-pull-request](https://github.com/peter-evans/create-pull-request)

toolkit_info.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"python3": "3.11",
3-
"ansible": "2.17.5",
4-
"terraform": "1.9.8",
5-
"kubectl": "1.31.1",
6-
"helm": "3.16.2",
7-
"awscli": "2.18.10",
8-
"azurecli": "2.65.0",
9-
"pwsh": "7.4.5"
3+
"ansible": "2.18.1",
4+
"terraform": "1.10.3",
5+
"kubectl": "1.32.0",
6+
"helm": "3.16.4",
7+
"awscli": "2.22.23",
8+
"azurecli": "2.67.0",
9+
"pwsh": "7.4.6"
1010
}

0 commit comments

Comments
 (0)