diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a128f45..4dafa70 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -71,7 +71,7 @@ jobs: - OS: alpine OS_VARIANT: edge BASE_IMAGE_TAG: edge - ANSIBLE_VERSION: 9.1.0 + ANSIBLE_VERSION: 9.3.0 env: OS: ${{ matrix.OS }} OS_VARIANT: ${{ matrix.OS_VARIANT }} @@ -199,7 +199,7 @@ jobs: OS_VARIANT: 22.04 PACKAGE_TYPE: ppa SUFFIX_PPA: -ppa - ANSIBLE_VERSION: 8.7.0 + ANSIBLE_VERSION: 9.3.0 env: OS: ${{ matrix.OS }} OS_VARIANT: ${{ matrix.OS_VARIANT }} diff --git a/variants/alpine/edge/Dockerfile b/variants/alpine/edge/Dockerfile index 2b451b0..e368467 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=9.1.0-r0 openssh-client \ + && apk add --no-cache ansible=9.3.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 449873c..c097746 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=8.7.0-1ppa~jammy openssh-client \ + && apt-get install -y ansible=9.3.0-1ppa~jammy openssh-client \ && apt-get remove -y --autoremove software-properties-common \ && rm -rf /var/lib/apt/lists/*