commit | 7f630e6f358275d0bce9fea2665a2763edbf6a0e | [log] [tgz] |
---|---|---|
author | Philip H <47042125+pheiduck@users.noreply.github.com> | Tue Feb 06 10:47:49 2024 +0100 |
committer | GitHub <noreply@github.com> | Tue Feb 06 10:47:49 2024 +0100 |
tree | c4d9d61dae5a4e22b67e0782ccd7f7a2ab5db7ad | |
parent | ea7f2f29afdbc7e506ed3e5211c76ee65448413f [diff] |
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>
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 49c9d3f..0d34658 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml
@@ -124,7 +124,7 @@ 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'