From 68ce15863a727f2bd030b9389bfae025b1a729d4 Mon Sep 17 00:00:00 2001 From: Wang Yan Date: Tue, 23 Mar 2021 18:04:14 +0800 Subject: [PATCH] fix CI dependency error Fix the failure reported by git action Package python-minimal is not available, but is referred to by another package. This may mean that the package is missing, has been obsoleted, or is only available from another source However the following packages replace it: python2-minimal E: Package 'python-minimal' has no installation candidate Signed-off-by: Wang Yan --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b228dbec2..3c933cfd0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,7 +35,7 @@ jobs: - name: Dependencies run: | sudo apt-get -q update - sudo -E apt-get -yq --no-install-suggests --no-install-recommends install python-minimal + sudo -E apt-get -yq --no-install-suggests --no-install-recommends install python2-minimal cd /tmp && go get -u github.com/vbatts/git-validation - name: Build