From 8b2e17d9b7d1532a44295131bf97416468965af5 Mon Sep 17 00:00:00 2001 From: Dmitry Tantsur Date: Fri, 22 Nov 2024 17:31:25 +0100 Subject: [PATCH] CI: run `apt update` before installing podman Right now, the job fails on a stale package. Signed-off-by: Dmitry Tantsur --- .github/workflows/build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7710ae6..c02d0bd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -24,6 +24,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 + - name: Update repositories + run: sudo apt update - name: Install podman run: sudo apt install -y podman - name: Build the image