From ae475b321027d8540d6e706c05482e83d6020dbc Mon Sep 17 00:00:00 2001 From: Jesus Garcia Date: Tue, 2 Dec 2025 10:36:16 -0500 Subject: [PATCH] Update workflows OS list to replace RHEL8 for RHEL9 deployments --- .github/workflows/aio.yml | 8 ++++---- .github/workflows/distributed.yml | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/aio.yml b/.github/workflows/aio.yml index 6816b336..06af4c04 100644 --- a/.github/workflows/aio.yml +++ b/.github/workflows/aio.yml @@ -10,7 +10,7 @@ on: OS_LIST: description: 'Operating Systems (comma-separated string list)' required: true - default: '["CentOS_8", "AmazonLinux_23", "Ubuntu_22", "RHEL8"]' + default: '["CentOS_8", "AmazonLinux_23", "Ubuntu_22", "RHEL9"]' type: string COMMIT_LIST: description: 'Wazuh components revisions (comma-separated string list) ["indexer", "manager", "dashboard", "agent"]' @@ -64,7 +64,7 @@ jobs: if [[ "${{ inputs.OS_LIST }}" != "null" && "${{ inputs.OS_LIST }}" != "" ]]; then OS_LIST='${{ inputs.OS_LIST }}' else - OS_LIST='["CentOS_8", "AmazonLinux_23", "Ubuntu_22", "RHEL8"]' + OS_LIST='["CentOS_8", "AmazonLinux_23", "Ubuntu_22", "RHEL9"]' fi echo "OS_LIST=$OS_LIST" >> $GITHUB_OUTPUT @@ -325,8 +325,8 @@ jobs: "RHEL7") SUBNAME="redhat-7" ;; - "RHEL8") - SUBNAME="redhat-8" + "RHEL9") + SUBNAME="redhat-9" ;; *) echo "Invalid SYSTEM selection" >&2 diff --git a/.github/workflows/distributed.yml b/.github/workflows/distributed.yml index 8c75f92c..43fc8ee1 100644 --- a/.github/workflows/distributed.yml +++ b/.github/workflows/distributed.yml @@ -10,7 +10,7 @@ on: OS_LIST: description: 'Operating Systems (comma-separated string list)' required: true - default: '["CentOS_8", "AmazonLinux_23", "Ubuntu_22", "RHEL8"]' + default: '["CentOS_8", "AmazonLinux_23", "Ubuntu_22", "RHEL9"]' type: string COMMIT_LIST: description: 'Wazuh components revisions (comma-separated string list) ["indexer", "manager", "dashboard", "agent"]' @@ -65,7 +65,7 @@ jobs: if [[ "${{ inputs.OS_LIST }}" != "null" && "${{ inputs.OS_LIST }}" != "" ]]; then OS_LIST='${{ inputs.OS_LIST }}' else - OS_LIST='["CentOS_8", "AmazonLinux_23", "Ubuntu_22", "RHEL8"]' + OS_LIST='["CentOS_8", "AmazonLinux_23", "Ubuntu_22", "RHEL9"]' fi echo "OS_LIST=$OS_LIST" >> $GITHUB_OUTPUT echo "Operating Systems: $OS_LIST" @@ -327,8 +327,8 @@ jobs: "RHEL7") SUBNAME="redhat-7" ;; - "RHEL8") - SUBNAME="redhat-8" + "RHEL9") + SUBNAME="redhat-9" ;; *) echo "Invalid SYSTEM selection" >&2