diff --git a/.github/workflows/ci-main-daily.yml b/.github/workflows/ci-main-daily.yml index 0ad124293b51..025c82afe352 100644 --- a/.github/workflows/ci-main-daily.yml +++ b/.github/workflows/ci-main-daily.yml @@ -19,20 +19,15 @@ jobs: matrix: version: - docs - - version-2025-12 - version-2026-2 + - version-2026-5 steps: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v5 - run: | set -euo pipefail current="$(pwd)" dir="/tmp/authentik/${{ matrix.version }}" - # 2025.12 still serves the legacy docker-compose filename; newer sites use compose.yml. - compose_path="compose.yml" - if [ "${{ matrix.version }}" = "version-2025-12" ]; then - compose_path="docker-compose.yml" - fi mkdir -p "${dir}/lifecycle/container" cd "${dir}" - wget "https://${{ matrix.version }}.goauthentik.io/${compose_path}" -O "${dir}/lifecycle/container/compose.yml" + wget "https://${{ matrix.version }}.goauthentik.io/compose.yml" -O "${dir}/lifecycle/container/compose.yml" "${current}/scripts/test_docker.sh"