From ca030e694e893415fd3f1d08ae26dbc8e0197a76 Mon Sep 17 00:00:00 2001 From: joe Date: Fri, 27 Oct 2023 03:34:32 +0000 Subject: [PATCH] Feature: Add `ansible` `20231027.0.0` images (#37) --- .github/workflows/build.yml | 4 ++-- variants/alpine/edge/Dockerfile | 2 +- variants/ubuntu/22.04-ppa/Dockerfile | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f6fda4d..9ba05e3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -67,7 +67,7 @@ jobs: - OS: alpine OS_VARIANT: edge BASE_IMAGE_TAG: edge - ANSIBLE_VERSION: 8.0.0 + ANSIBLE_VERSION: 8.4.0 env: OS: ${{ matrix.OS }} OS_VARIANT: ${{ matrix.OS_VARIANT }} @@ -195,7 +195,7 @@ jobs: OS_VARIANT: 22.04 PACKAGE_TYPE: ppa SUFFIX_PPA: -ppa - ANSIBLE_VERSION: 7.6.0 + ANSIBLE_VERSION: 8.5.0 env: OS: ${{ matrix.OS }} OS_VARIANT: ${{ matrix.OS_VARIANT }} diff --git a/variants/alpine/edge/Dockerfile b/variants/alpine/edge/Dockerfile index 7708dac..9a294fe 100644 --- a/variants/alpine/edge/Dockerfile +++ b/variants/alpine/edge/Dockerfile @@ -3,7 +3,7 @@ FROM $BASE_IMAGE RUN apk update \ && apk search ansible \ - && apk add --no-cache ansible=8.0.0-r0 openssh-client \ + && apk add --no-cache ansible=8.4.0-r0 openssh-client \ && rm -rf /var/cache/apk/* CMD ["/bin/sh"] diff --git a/variants/ubuntu/22.04-ppa/Dockerfile b/variants/ubuntu/22.04-ppa/Dockerfile index ff0ccc7..8372998 100644 --- a/variants/ubuntu/22.04-ppa/Dockerfile +++ b/variants/ubuntu/22.04-ppa/Dockerfile @@ -5,7 +5,7 @@ RUN apt-get update \ && apt-get install -y software-properties-common \ && apt-add-repository --yes --update ppa:ansible/ansible \ && apt-cache policy ansible \ - && apt-get install -y ansible=7.6.0-1ppa~jammy openssh-client \ + && apt-get install -y ansible=8.5.0-1ppa~jammy openssh-client \ && apt-get remove -y --autoremove software-properties-common \ && rm -rf /var/lib/apt/lists/*