From 966caddecc01d5b9d95dff767bb422d398e26756 Mon Sep 17 00:00:00 2001 From: reggie Date: Fri, 11 Oct 2024 20:55:44 -0500 Subject: [PATCH] Looks like we can cache pip deps directly with actions/setup-python --- .github/workflows/docs.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 9a944aee..8782a4f9 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -47,16 +47,10 @@ jobs: - uses: actions/setup-python@v5 with: python-version: 3.x + cache: 'pip' - run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV - - uses: actions/cache@v4 - with: - key: mkdocs-material-${{ env.cache_id }} - path: .cache - restore-keys: | - mkdocs-material- - - run: pip install -r requirements.txt - name: Build Docs and Capture Warnings