CI: skip apt upgrade on github runners (#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>
This commit is contained in:
Philip H
2024-02-06 10:47:49 +01:00
committed by GitHub
parent ea7f2f29af
commit 7f630e6f35

View File

@ -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'