From 448c5c2e39867ed290202e2cffbab1a0416c66ae Mon Sep 17 00:00:00 2001 From: Lukas Magauer <42647570+lumarel@users.noreply.github.com> Date: Mon, 18 Aug 2025 12:21:17 +0000 Subject: [PATCH] Add Ansible 2.19 and remove 2.17 --- .github/workflows/build-latest.yml | 6 +++--- .github/workflows/ci.yml | 6 +++--- .github/workflows/release.yml | 6 +++--- ...t-2.17-cloud.yml => execution-environment-2.19-cloud.yml | 2 +- ...t-2.17-infra.yml => execution-environment-2.19-infra.yml | 2 +- ...nventory.yml => execution-environment-2.19-inventory.yml | 2 +- ...ent-2.17-lint.yml => execution-environment-2.19-lint.yml | 2 +- ...17-network.yml => execution-environment-2.19-network.yml | 2 +- ...17-storage.yml => execution-environment-2.19-storage.yml | 2 +- ...ent-2.17-sync.yml => execution-environment-2.19-sync.yml | 2 +- ...n-environment-2.17.yml => execution-environment-2.19.yml | 2 +- execution-environment-cloud.yml | 2 +- execution-environment-infra.yml | 2 +- execution-environment-inventory.yml | 2 +- execution-environment-lint.yml | 2 +- execution-environment-network.yml | 2 +- execution-environment-storage.yml | 2 +- execution-environment-sync.yml | 2 +- execution-environment.yml | 2 +- 19 files changed, 25 insertions(+), 25 deletions(-) rename execution-environment-2.17-cloud.yml => execution-environment-2.19-cloud.yml (95%) rename execution-environment-2.17-infra.yml => execution-environment-2.19-infra.yml (95%) rename execution-environment-2.17-inventory.yml => execution-environment-2.19-inventory.yml (95%) rename execution-environment-2.17-lint.yml => execution-environment-2.19-lint.yml (95%) rename execution-environment-2.17-network.yml => execution-environment-2.19-network.yml (95%) rename execution-environment-2.17-storage.yml => execution-environment-2.19-storage.yml (95%) rename execution-environment-2.17-sync.yml => execution-environment-2.19-sync.yml (95%) rename execution-environment-2.17.yml => execution-environment-2.19.yml (95%) diff --git a/.github/workflows/build-latest.yml b/.github/workflows/build-latest.yml index 6a25406..1a7233f 100644 --- a/.github/workflows/build-latest.yml +++ b/.github/workflows/build-latest.yml @@ -45,8 +45,8 @@ jobs: version: - "2.14" - "2.16" - - "2.17" - "2.18" + - "2.19" steps: - uses: actions/checkout@v4 @@ -114,8 +114,8 @@ jobs: version: - "2.14" - "2.16" - - "2.17" - "2.18" + - "2.19" type: - cloud - infra @@ -181,8 +181,8 @@ jobs: version: - "2.14" - "2.16" - - "2.17" - "2.18" + - "2.19" steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 92ed8b5..817d639 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -56,8 +56,8 @@ jobs: version: - "2.14" - "2.16" - - "2.17" - "2.18" + - "2.19" steps: - uses: actions/checkout@v4 @@ -115,8 +115,8 @@ jobs: version: - "2.14" - "2.16" - - "2.17" - "2.18" + - "2.19" type: - cloud - infra @@ -172,8 +172,8 @@ jobs: version: - "2.14" - "2.16" - - "2.17" - "2.18" + - "2.19" steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 663dba0..033d6d6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -41,8 +41,8 @@ jobs: version: - "2.14" - "2.16" - - "2.17" - "2.18" + - "2.19" steps: - uses: actions/checkout@v4 @@ -110,8 +110,8 @@ jobs: version: - "2.14" - "2.16" - - "2.17" - "2.18" + - "2.19" type: - cloud - infra @@ -177,8 +177,8 @@ jobs: version: - "2.14" - "2.16" - - "2.17" - "2.18" + - "2.19" steps: - uses: actions/checkout@v4 diff --git a/execution-environment-2.17-cloud.yml b/execution-environment-2.19-cloud.yml similarity index 95% rename from execution-environment-2.17-cloud.yml rename to execution-environment-2.19-cloud.yml index 0038479..c4f6d30 100644 --- a/execution-environment-2.17-cloud.yml +++ b/execution-environment-2.19-cloud.yml @@ -5,7 +5,7 @@ images: name: quay.io/rockylinux/rockylinux:9 dependencies: ansible_core: - package_pip: ansible-core==2.17.* + package_pip: ansible-core==2.19.* ansible_runner: package_pip: ansible-runner galaxy: build/requirements-cloud.yml diff --git a/execution-environment-2.17-infra.yml b/execution-environment-2.19-infra.yml similarity index 95% rename from execution-environment-2.17-infra.yml rename to execution-environment-2.19-infra.yml index 072dc5c..6270fd2 100644 --- a/execution-environment-2.17-infra.yml +++ b/execution-environment-2.19-infra.yml @@ -5,7 +5,7 @@ images: name: quay.io/rockylinux/rockylinux:9 dependencies: ansible_core: - package_pip: ansible-core==2.17.* + package_pip: ansible-core==2.19.* ansible_runner: package_pip: ansible-runner galaxy: build/requirements-infra.yml diff --git a/execution-environment-2.17-inventory.yml b/execution-environment-2.19-inventory.yml similarity index 95% rename from execution-environment-2.17-inventory.yml rename to execution-environment-2.19-inventory.yml index a69a703..23e9f85 100644 --- a/execution-environment-2.17-inventory.yml +++ b/execution-environment-2.19-inventory.yml @@ -5,7 +5,7 @@ images: name: quay.io/rockylinux/rockylinux:9 dependencies: ansible_core: - package_pip: ansible-core==2.17.* + package_pip: ansible-core==2.19.* ansible_runner: package_pip: ansible-runner galaxy: build/requirements-inventory.yml diff --git a/execution-environment-2.17-lint.yml b/execution-environment-2.19-lint.yml similarity index 95% rename from execution-environment-2.17-lint.yml rename to execution-environment-2.19-lint.yml index 260642a..7fd6f92 100644 --- a/execution-environment-2.17-lint.yml +++ b/execution-environment-2.19-lint.yml @@ -9,7 +9,7 @@ options: user: root dependencies: ansible_core: - package_pip: ansible-core==2.17.* + package_pip: ansible-core==2.19.* ansible_runner: package_pip: ansible-runner galaxy: build/requirements-lint.yml diff --git a/execution-environment-2.17-network.yml b/execution-environment-2.19-network.yml similarity index 95% rename from execution-environment-2.17-network.yml rename to execution-environment-2.19-network.yml index b50fe12..d5ebd08 100644 --- a/execution-environment-2.17-network.yml +++ b/execution-environment-2.19-network.yml @@ -5,7 +5,7 @@ images: name: quay.io/rockylinux/rockylinux:9 dependencies: ansible_core: - package_pip: ansible-core==2.17.* + package_pip: ansible-core==2.19.* ansible_runner: package_pip: ansible-runner galaxy: build/requirements-network.yml diff --git a/execution-environment-2.17-storage.yml b/execution-environment-2.19-storage.yml similarity index 95% rename from execution-environment-2.17-storage.yml rename to execution-environment-2.19-storage.yml index eaff063..ae9cde8 100644 --- a/execution-environment-2.17-storage.yml +++ b/execution-environment-2.19-storage.yml @@ -5,7 +5,7 @@ images: name: quay.io/rockylinux/rockylinux:9 dependencies: ansible_core: - package_pip: ansible-core==2.17.* + package_pip: ansible-core==2.19.* ansible_runner: package_pip: ansible-runner galaxy: build/requirements-storage.yml diff --git a/execution-environment-2.17-sync.yml b/execution-environment-2.19-sync.yml similarity index 95% rename from execution-environment-2.17-sync.yml rename to execution-environment-2.19-sync.yml index 7d8e097..6db74ba 100644 --- a/execution-environment-2.17-sync.yml +++ b/execution-environment-2.19-sync.yml @@ -5,7 +5,7 @@ images: name: quay.io/rockylinux/rockylinux:9 dependencies: ansible_core: - package_pip: ansible-core==2.17.* + package_pip: ansible-core==2.19.* ansible_runner: package_pip: ansible-runner galaxy: build/requirements-sync.yml diff --git a/execution-environment-2.17.yml b/execution-environment-2.19.yml similarity index 95% rename from execution-environment-2.17.yml rename to execution-environment-2.19.yml index 8e8bc2e..43781a1 100644 --- a/execution-environment-2.17.yml +++ b/execution-environment-2.19.yml @@ -5,7 +5,7 @@ images: name: quay.io/rockylinux/rockylinux:9 dependencies: ansible_core: - package_pip: ansible-core==2.17.* + package_pip: ansible-core==2.19.* ansible_runner: package_pip: ansible-runner galaxy: build/requirements.yml diff --git a/execution-environment-cloud.yml b/execution-environment-cloud.yml index f1d5d20..8da46ce 100644 --- a/execution-environment-cloud.yml +++ b/execution-environment-cloud.yml @@ -5,7 +5,7 @@ images: name: quay.io/rockylinux/rockylinux:9 dependencies: ansible_core: - package_pip: ansible-core<2.18 + package_pip: ansible-core<2.19 ansible_runner: package_pip: ansible-runner galaxy: build/requirements-cloud.yml diff --git a/execution-environment-infra.yml b/execution-environment-infra.yml index c4f5793..b6b738a 100644 --- a/execution-environment-infra.yml +++ b/execution-environment-infra.yml @@ -5,7 +5,7 @@ images: name: quay.io/rockylinux/rockylinux:9 dependencies: ansible_core: - package_pip: ansible-core<2.18 + package_pip: ansible-core<2.19 ansible_runner: package_pip: ansible-runner galaxy: build/requirements-infra.yml diff --git a/execution-environment-inventory.yml b/execution-environment-inventory.yml index 16cdfae..f74cc94 100644 --- a/execution-environment-inventory.yml +++ b/execution-environment-inventory.yml @@ -5,7 +5,7 @@ images: name: quay.io/rockylinux/rockylinux:9 dependencies: ansible_core: - package_pip: ansible-core<2.18 + package_pip: ansible-core<2.19 ansible_runner: package_pip: ansible-runner galaxy: build/requirements-inventory.yml diff --git a/execution-environment-lint.yml b/execution-environment-lint.yml index c9ed680..6649e72 100644 --- a/execution-environment-lint.yml +++ b/execution-environment-lint.yml @@ -9,7 +9,7 @@ options: user: root dependencies: ansible_core: - package_pip: ansible-core<2.18 + package_pip: ansible-core<2.19 ansible_runner: package_pip: ansible-runner galaxy: build/requirements-lint.yml diff --git a/execution-environment-network.yml b/execution-environment-network.yml index 4f77a8d..417647f 100644 --- a/execution-environment-network.yml +++ b/execution-environment-network.yml @@ -5,7 +5,7 @@ images: name: quay.io/rockylinux/rockylinux:9 dependencies: ansible_core: - package_pip: ansible-core<2.18 + package_pip: ansible-core<2.19 ansible_runner: package_pip: ansible-runner galaxy: build/requirements-network.yml diff --git a/execution-environment-storage.yml b/execution-environment-storage.yml index dbe263d..dce7f0d 100644 --- a/execution-environment-storage.yml +++ b/execution-environment-storage.yml @@ -5,7 +5,7 @@ images: name: quay.io/rockylinux/rockylinux:9 dependencies: ansible_core: - package_pip: ansible-core<2.18 + package_pip: ansible-core<2.19 ansible_runner: package_pip: ansible-runner galaxy: build/requirements-storage.yml diff --git a/execution-environment-sync.yml b/execution-environment-sync.yml index ddfcc29..e29f639 100644 --- a/execution-environment-sync.yml +++ b/execution-environment-sync.yml @@ -5,7 +5,7 @@ images: name: quay.io/rockylinux/rockylinux:9 dependencies: ansible_core: - package_pip: ansible-core<2.18 + package_pip: ansible-core<2.19 ansible_runner: package_pip: ansible-runner galaxy: build/requirements-sync.yml diff --git a/execution-environment.yml b/execution-environment.yml index 29b48c8..20b8f71 100644 --- a/execution-environment.yml +++ b/execution-environment.yml @@ -5,7 +5,7 @@ images: name: quay.io/rockylinux/rockylinux:9 dependencies: ansible_core: - package_pip: ansible-core<2.18 + package_pip: ansible-core<2.19 ansible_runner: package_pip: ansible-runner galaxy: build/requirements.yml