From 258f1f098b351a90b807ed3ff135d09be8c5eb61 Mon Sep 17 00:00:00 2001 From: Dov Benyomin Sohacheski Date: Mon, 18 Nov 2024 10:28:53 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=BC=20Bump=20dependencies?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build.yaml | 2 +- .pre-commit-config.yaml | 2 +- Dockerfile | 2 +- src/requirements.txt | 4 ++-- src/requirements.yaml | 6 +++--- src/rootfs/etc/ansible/ansible.cfg | 3 ++- 6 files changed, 10 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 49ca16e..6b9bfe6 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -62,7 +62,7 @@ jobs: uses: docker/build-push-action@v6 id: docker_build env: - DOCKER_BUILD_NO_SUMMARY: true + DOCKER_BUILD_SUMMARY: false with: cache-from: type=gha cache-to: type=gha,mode=max diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 58ac1e8..91b1d4b 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,7 +1,7 @@ --- repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.5.0 + rev: v5.0.0 hooks: - id: check-added-large-files args: diff --git a/Dockerfile b/Dockerfile index 8f0a493..e02cc5a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -58,7 +58,7 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"] ARG TARGETARCH # renovate: source=github-releases dep=google/go-containerregistry -ARG crane_version=0.20.1 +ARG crane_version=0.20.2 RUN case ${TARGETARCH} in "arm64") amr64 ;; "amd64") file=x86_64 ;; esac \ && curl -fsSL "https://github.com/google/go-containerregistry/releases/download/v${crane_version}/go-containerregistry_Linux_${file}.tar.gz" \ diff --git a/src/requirements.txt b/src/requirements.txt index 20f609f..ca582be 100644 --- a/src/requirements.txt +++ b/src/requirements.txt @@ -1,6 +1,6 @@ -ansible-core==2.17.2 +ansible-core==2.18.0 docker==7.1.0 -kubernetes==30.1.0 +kubernetes==31.0.0 netaddr==1.3.0 passlib==1.7.4 yq==3.4.3 diff --git a/src/requirements.yaml b/src/requirements.yaml index cd2f568..b388799 100644 --- a/src/requirements.yaml +++ b/src/requirements.yaml @@ -1,13 +1,13 @@ --- collections: - name: ansible.posix - version: 1.5.4 + version: 1.6.2 - name: community.crypto - version: 2.21.0 + version: 2.22.3 - name: community.general - version: 9.2.0 + version: 10.0.1 - name: kubernetes.core version: 5.0.0 diff --git a/src/rootfs/etc/ansible/ansible.cfg b/src/rootfs/etc/ansible/ansible.cfg index 56aff87..8aa30a2 100644 --- a/src/rootfs/etc/ansible/ansible.cfg +++ b/src/rootfs/etc/ansible/ansible.cfg @@ -1,6 +1,7 @@ [defaults] -callbacks_enabled = ansible.posix.timer, community.general.dense, community.general.yaml +bin_ansible_callbacks = True callback_result_format = yaml +callbacks_enabled = community.general.unixy, ansible.posix.timer, community.general.dense, community.general.yaml fact_caching = jsonfile fact_caching_connection = /tmp force_color = True