changeset 34282:890bf6a6c957

CI: skip apt upgrade on github runners (#13975) Commit: https://github.com/vim/vim/commit/7f630e6f358275d0bce9fea2665a2763edbf6a0e Author: Philip H <47042125+pheiduck@users.noreply.github.com> Date: Tue Feb 6 10:47:49 2024 +0100 CI: skip apt upgrade on github runners (https://github.com/vim/vim/issues/13975) Revert: https://github.com/vim/vim/pull/13680 Fixed in: https://github.com/actions/runner-images/issues/9016 Signed-off-by: Philip H <47042125+pheiduck@users.noreply.github.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Tue, 06 Feb 2024 11:00:11 +0100
parents 517c5f0b9202
children 6f13dee16af9
files .github/workflows/ci.yml
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -124,7 +124,7 @@ jobs:
               libattr1-dev
             )
           fi
-          sudo apt-get update && sudo apt-get upgrade && sudo apt-get install -y "${PKGS[@]}"
+          sudo apt-get update && sudo apt-get install -y "${PKGS[@]}"
 
       - name: Install gcc-${{ env.GCC_VER }}
         if:  matrix.compiler == 'gcc'