From f30963981f93ac9baadb288558acdb588e7e0487 Mon Sep 17 00:00:00 2001 From: penguin Date: Fri, 12 Dec 2025 18:42:37 -0600 Subject: [PATCH] infra: actions: cache git repo --- .gitea/workflows/gentoo-utils.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitea/workflows/gentoo-utils.yml b/.gitea/workflows/gentoo-utils.yml index 7b09db3..14127c6 100644 --- a/.gitea/workflows/gentoo-utils.yml +++ b/.gitea/workflows/gentoo-utils.yml @@ -7,6 +7,12 @@ jobs: runs-on: ubuntu-latest continue-on-error: true steps: + - name: Restore git cache + uses: actions/cache@v5 + with: + path: .git + key: gitea-repo-${{ gitea.repository }}-${{ gitea.ref }} + - name: Checkout repo uses: actions/checkout@v5 with: