From 1cf1a64f56d464d3a949ef3e2e95fe61534f4863 Mon Sep 17 00:00:00 2001 From: Benjamin Gilbert Date: Mon, 19 Aug 2024 03:00:48 -0700 Subject: [PATCH] workflows: drop save-always from actions/cache invocation The option never actually worked, and is being deprecated upstream. We could implement it ourselves with separate actions/cache/save and actions/cache/restore invocations, but don't bother for now. Signed-off-by: Benjamin Gilbert --- .github/workflows/build.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fb0f8de..9ba2c1c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -100,7 +100,6 @@ jobs: with: key: build-packagecache path: subprojects/packagecache - save-always: true - name: Build source tarball run: | git config --global --add safe.directory "$GITHUB_WORKSPACE"