ci: remove ci/ from cache key (#23878)

The ci/ directory is now only used for Cirrus, not for GitHub Actions.
This commit is contained in:
zeertzjq
2023-06-02 17:38:42 +08:00
committed by GitHub
parent 843c1bed95
commit 80814d1535

View File

@ -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') }}