From d371873d07ab3849a27946c6ce32afc37e50a176 Mon Sep 17 00:00:00 2001 From: Lester Amoin Espiritu Date: Fri, 3 Jan 2025 21:58:34 +0800 Subject: [PATCH] Update runner download URLs --- root/setup.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/root/setup.sh b/root/setup.sh index ab70bee..4b5b61c 100644 --- a/root/setup.sh +++ b/root/setup.sh @@ -76,12 +76,12 @@ function install_packages() { # container-build environment where systemd is not active/running. if [[ ${ENABLE_FIPS} == true && $(cat /proc/sys/crypto/fips_enabled) == 1 ]]; then PACKAGE_FILES=( - "https://gitlab-runner-downloads.s3.amazonaws.com/$RUNNER_VERSION/rpm/gitlab-runner_${TARGETARCH}-fips.rpm" + "https://s3.dualstack.us-east-1.amazonaws.com/gitlab-runner-downloads/$RUNNER_VERSION/rpm/gitlab-runner_${TARGETARCH}-fips.rpm" ) else PACKAGE_FILES=( - "https://gitlab-runner-downloads.s3.amazonaws.com/$RUNNER_VERSION/rpm/gitlab-runner_${TARGETARCH}.rpm" - "https://gitlab-runner-downloads.s3.amazonaws.com/$RUNNER_VERSION/rpm/gitlab-runner-helper-images.rpm" + "https://s3.dualstack.us-east-1.amazonaws.com/gitlab-runner-downloads/$RUNNER_VERSION/rpm/gitlab-runner_${TARGETARCH}.rpm" + "https://s3.dualstack.us-east-1.amazonaws.com/gitlab-runner-downloads/$RUNNER_VERSION/rpm/gitlab-runner-helper-images.rpm" ) fi