From d8fef5ccd3609eeb2beb56c219e982a5b55406b5 Mon Sep 17 00:00:00 2001 From: Tau Date: Fri, 22 Nov 2024 17:55:09 +0100 Subject: [PATCH] fixes missing apt update in PR workflow --- .github/workflows/go.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 1bb27d20..35918811 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -34,7 +34,9 @@ jobs: - uses: actions/checkout@v4 - name: Install podman - run: sudo apt-get install -y podman + run: | + sudo apt-get update + sudo apt-get install -y podman # See: https://github.com/actions/runner-images/issues/9425 - name: Patch crun