Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

core: update tool versions #233

Merged
merged 1 commit into from
Sep 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ RUN curl -k https://bootstrap.pypa.io/get-pip.py -o get-pip.py && \
rm get-pip.py

# Install Ansible
ARG ANSIBLE_VERSION=2.17.3
ARG ANSIBLE_VERSION=2.17.4
RUN python3 -m pip install ansible-core==${ANSIBLE_VERSION}

# Install Terraform
Expand All @@ -64,7 +64,7 @@ RUN mkdir /tmp/kubectl_env/ && \
rm -rf /tmp/kubectl_env/

# Install Helm
ARG HELM_VERSION=3.15.4
ARG HELM_VERSION=3.16.1
RUN mkdir /tmp/helm_env/ && \
cd /tmp/helm_env/ && \
wget https://get.helm.sh/helm-v${HELM_VERSION}-linux-amd64.tar.gz && \
Expand All @@ -73,7 +73,7 @@ RUN mkdir /tmp/helm_env/ && \
rm -rf /tmp/helm_env/

# Install AwsCLI
ARG AWSCLI_VERSION=2.17.46
ARG AWSCLI_VERSION=2.17.51
RUN mkdir /tmp/awscli_env/ && \
cd /tmp/awscli_env/ && \
wget "https://awscli.amazonaws.com/awscli-exe-linux-x86_64-${AWSCLI_VERSION}.zip" && \
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,11 +164,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.3 | [Check](https://api.github.com/repos/ansible/ansible/releases/latest) | [ansible_usage](./docs/usage/ansible_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) |
| 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.46 | [Check](https://raw.githubusercontent.com/aws/aws-cli/v2/CHANGELOG.rst) | [awscli_usage](./docs/usage/awscli_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) |
| 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 |

Expand Down
5 changes: 3 additions & 2 deletions pr-changelog.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
core: update tool versions

- **awscli**: from `2.17.42` to `2.17.46`
- **azurecli**: from `2.63.0` to `2.64.0`
- **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`

Auto-generated by [create-pull-request](https://github.com/peter-evans/create-pull-request)
6 changes: 3 additions & 3 deletions toolkit_info.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"python3": "3.11",
"ansible": "2.17.3",
"ansible": "2.17.4",
"terraform": "1.9.5",
"kubectl": "1.31.0",
"helm": "3.15.4",
"awscli": "2.17.46",
"helm": "3.16.1",
"awscli": "2.17.51",
"azurecli": "2.64.0",
"pwsh": "7.4.5"
}