Skip to content

Commit eab98dc

Browse files
committed
➕ Add Windows collections
1 parent 49485dd commit eab98dc

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ ARG TARGETARCH
6060
# renovate: source=github-releases dep=google/go-containerregistry
6161
ARG crane_version=0.20.2
6262

63-
RUN case ${TARGETARCH} in "arm64") file=amr64 ;; "amd64") file=x86_64 ;; esac \
63+
RUN case ${TARGETARCH} in "arm64") file=arm64 ;; "amd64") file=x86_64 ;; esac \
6464
&& curl -fsSL "https://github.com/google/go-containerregistry/releases/download/v${crane_version}/go-containerregistry_Linux_${file}.tar.gz" \
6565
| tar -xzf - \
6666
&& curl -fsSL "https://mirror.openshift.com/pub/openshift-v4/${file}/clients/ocp/4.17.5/openshift-client-linux.tar.gz" \

src/requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ansible-core==2.18.0
1+
ansible-core==2.18.1
22
docker==7.1.0
33
kubernetes==31.0.0
44
netaddr==1.3.0

src/requirements.yaml

+11-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,22 @@
11
---
22
collections:
33
- name: ansible.posix
4-
version: 1.6.2
4+
version: 2.0.0
5+
6+
- name: ansible.windows
7+
version: 2.6.0
58

69
- name: community.crypto
710
version: 2.22.3
811

12+
- name: community.docker
13+
version: 4.1.0
14+
915
- name: community.general
10-
version: 10.0.1
16+
version: 10.1.0
17+
18+
- name: community.windows
19+
version: 2.3.0
1120

1221
- name: kubernetes.core
1322
version: 5.0.0

0 commit comments

Comments
 (0)