From ef7be8348fd830e409504a442f3f3ad0931cfbc3 Mon Sep 17 00:00:00 2001 From: Christian Brabandt Date: Tue, 22 Jun 2021 18:21:19 +0200 Subject: [PATCH] patch 8.2.3034: installing packages on github CI sometimes fails Problem: Installing packages on github CI sometimes fails. Solution: Update package information first. (Christian Brabandt, closes #8432) --- .github/workflows/ci.yml | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e569b4239..b821e822b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -56,7 +56,7 @@ jobs: - name: Install packages run: | - sudo apt-get install -y \ + sudo apt update && sudo apt install -y \ autoconf \ lcov \ gettext \ diff --git a/src/version.c b/src/version.c index d8d033a2e..5502952b7 100644 --- a/src/version.c +++ b/src/version.c @@ -755,6 +755,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 3034, /**/ 3033, /**/ -- 2.50.1