From 39308e9f2118d0637c4016459269933697b39c17 Mon Sep 17 00:00:00 2001 From: Roxedus Date: Fri, 27 Mar 2026 19:36:33 +0100 Subject: [PATCH 1/2] Bump --- Dockerfile | 4 ++-- Dockerfile.aarch64 | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 860b1ea4..35176964 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 -FROM ghcr.io/linuxserver/baseimage-alpine:3.22 +FROM ghcr.io/linuxserver/baseimage-alpine:3.23 # set version label ARG BUILD_DATE @@ -10,7 +10,7 @@ LABEL maintainer="roxedus, thelamer" RUN \ echo "**** install build packages ****" && \ - YQ_VERSION=v4.45.1 &&\ + YQ_VERSION=v4.52.5 &&\ wget https://github.com/mikefarah/yq/releases/download/${YQ_VERSION}/yq_linux_amd64 -O /usr/bin/yq &&\ chmod +x /usr/bin/yq && \ apk add --no-cache --upgrade \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index bb4ab5cd..2b4e1366 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 -FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.22 +FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.23 # set version label ARG BUILD_DATE @@ -10,7 +10,7 @@ LABEL maintainer="roxedus, thelamer" RUN \ echo "**** install build packages ****" && \ - YQ_VERSION=v4.45.1 &&\ + YQ_VERSION=v4.52.5 &&\ wget https://github.com/mikefarah/yq/releases/download/${YQ_VERSION}/yq_linux_arm64 -O /usr/bin/yq &&\ chmod +x /usr/bin/yq && \ apk add --no-cache --upgrade \ From fc68f85729d8ffed0cacfa7c1e76c232e95e2269 Mon Sep 17 00:00:00 2001 From: Roxedus Date: Fri, 27 Mar 2026 19:37:03 +0100 Subject: [PATCH 2/2] Make logic compliant --- ansible/generate.yml | 4 ++-- ansible/roles/github/tasks/main.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ansible/generate.yml b/ansible/generate.yml index 4a06e39c..0cc809f6 100644 --- a/ansible/generate.yml +++ b/ansible/generate.yml @@ -19,7 +19,7 @@ - name: Set UID tags: [ "always" ] changed_when: false - when: lookup('env', 'PUID') + when: lookup('env', 'PUID') | ternary(True, False) user: name: abc non_unique: yes @@ -28,7 +28,7 @@ - name: Set GID tags: [ "always" ] changed_when: false - when: lookup('env', 'PGID') + when: lookup('env', 'PGID') | ternary(True, False) group: name: abc non_unique: yes diff --git a/ansible/roles/github/tasks/main.yml b/ansible/roles/github/tasks/main.yml index e56820c1..cffda2ea 100644 --- a/ansible/roles/github/tasks/main.yml +++ b/ansible/roles/github/tasks/main.yml @@ -29,7 +29,7 @@ - permissions.yml - name: Populate conditional Github workflows - when: item.when + when: item.when | ternary(True, False) template: src: "{{ item.file }}.j2" dest: "/tmp/.github/workflows/{{ item.file }}"