Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature: Add ansible 20240311.0.0 images #41

Merged
merged 1 commit into from
Mar 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion variants/alpine/edge/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
2 changes: 1 addition & 1 deletion variants/ubuntu/22.04-ppa/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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/*

Expand Down
Loading