diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4218f23..b6389cd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -242,6 +242,7 @@ jobs: steps: - name: Install Node.js for checkout action run: | + export DEBIAN_FRONTEND=noninteractive apt-get update && apt-get install -y curl curl -fsSL https://deb.nodesource.com/setup_20.x | bash - apt-get install -y nodejs @@ -252,6 +253,7 @@ jobs: - name: Install Java and SonarScanner run: | set -e + export DEBIAN_FRONTEND=noninteractive apt-get update && apt-get install -y wget curl unzip openjdk-21-jre # Use a known working version to avoid download issues @@ -346,6 +348,9 @@ jobs: - name: Install Python 3.11 and dependencies run: | + export DEBIAN_FRONTEND=noninteractive + export TZ=UTC + ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone apt-get update apt-get install -y software-properties-common add-apt-repository -y ppa:deadsnakes/ppa