From 1114c0803680d9dcf8b7991fd5099f406be91168 Mon Sep 17 00:00:00 2001 From: hanez Date: Wed, 1 Apr 2026 22:24:56 +0200 Subject: [PATCH] Disabled apt update and upgrade in the CI workflow/action because it consumes to much CPU time. No code changes. (0.39.15) --- .github/workflows/cmake-ubuntu-latest.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cmake-ubuntu-latest.yml b/.github/workflows/cmake-ubuntu-latest.yml index 5d6b96e..4f64ace 100644 --- a/.github/workflows/cmake-ubuntu-latest.yml +++ b/.github/workflows/cmake-ubuntu-latest.yml @@ -17,11 +17,11 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Update apt - run: sudo apt update + #- name: Update apt + # run: sudo apt update - - name: Upgrade apt - run: sudo apt upgrade -y + #- name: Upgrade apt + # run: sudo apt upgrade -y - name: Install dependencies run: sudo apt install cmake libjson-c-dev libssl-dev -y