Skip to content

Commit d154247

Browse files
committed
🔼 Bump dependencies
1 parent 0117aa7 commit d154247

File tree

3 files changed

+13
-10
lines changed

3 files changed

+13
-10
lines changed

‎Dockerfile‎

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ RUN --mount=src=src,dst=/build \
2121
/usr/lib/python3.11/EXTERNALLY-MANAGED \
2222
&& ln -fs "$(which python3)" /usr/bin/python
2323

24+
RUN mkdir -p /home/kloud \
25+
&& chown -R kloud:kloud /home/kloud
26+
2427
############################### Dependency Layer ###############################
2528

2629
FROM temp AS deps
@@ -29,7 +32,7 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"]
2932
ARG TARGETARCH
3033

3134
# renovate: source=github-releases dep=google/go-containerregistry
32-
ARG crane_version=0.20.3
35+
ARG crane_version=0.20.6
3336

3437
RUN case ${TARGETARCH} in "arm64") file=arm64 ;; "amd64") file=x86_64 ;; esac \
3538
&& curl -fsSL "https://github.com/google/go-containerregistry/releases/download/v${crane_version}/go-containerregistry_Linux_${file}.tar.gz" \

‎src/requirements.txt‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
ansible-core==2.18.2
1+
ansible-core==2.19.0
22
docker==7.1.0
3-
kubernetes==32.0.1
3+
kubernetes==33.1.0
44
netaddr==1.3.0
55
passlib==1.7.4
66
yq==3.4.3

‎src/requirements.yaml‎

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
---
22
collections:
33
- name: ansible.posix
4-
version: 2.0.0
4+
version: 2.1.0
55

66
- name: ansible.windows
7-
version: 2.7.0
7+
version: 3.2.0
88

99
- name: community.crypto
10-
version: 2.25.0
10+
version: 3.0.2
1111

1212
- name: community.docker
13-
version: 4.4.0
13+
version: 4.6.2
1414

1515
- name: community.general
16-
version: 10.3.1
16+
version: 11.1.1
1717

1818
- name: community.windows
19-
version: 2.3.0
19+
version: 3.0.1
2020

2121
- name: kubernetes.core
22-
version: 5.1.0
22+
version: 6.0.0

0 commit comments

Comments
 (0)