From: Guus Sliepen Date: Sun, 5 Apr 2026 11:07:56 +0000 (+0200) Subject: Fix installing git before actions/checkout X-Git-Url: https://www.tinc-vpn.org/git/?a=commitdiff_plain;h=464bed715f0f27f7ac0b899529198d6c9555fb5f;p=tinc Fix installing git before actions/checkout --- diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4dbd2967..acee787b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -210,7 +210,7 @@ jobs: CI: 1 steps: - name: Install Git - run: apt install --no-install-recommends git + run: apt update; apt install --no-install-recommends git - name: Checkout code uses: actions/checkout@v6