From 80814d1535812ce2f0f667a73dfd6032cd63402b Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Fri, 2 Jun 2023 17:38:42 +0800 Subject: [PATCH] ci: remove ci/ from cache key (#23878) The ci/ directory is now only used for Cirrus, not for GitHub Actions. --- .github/actions/cache/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/cache/action.yml b/.github/actions/cache/action.yml index 07f8feaa84..9ad14b8c27 100644 --- a/.github/actions/cache/action.yml +++ b/.github/actions/cache/action.yml @@ -17,6 +17,6 @@ runs: - uses: actions/cache@v3 with: path: .deps - key: ${{ env.CACHE_KEY }}-${{ hashFiles('cmake**', 'ci/**', + key: ${{ env.CACHE_KEY }}-${{ hashFiles('cmake**', '.github/workflows/test.yml', 'CMakeLists.txt', 'runtime/CMakeLists.txt', 'src/nvim/**/CMakeLists.txt') }}