diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-06-02 17:38:42 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-02 17:38:42 +0800 |
commit | 80814d1535812ce2f0f667a73dfd6032cd63402b (patch) | |
tree | 64f70711a04a9900a2da8d2a98cbb66b72f6ac7c | |
parent | 843c1bed95d35f7c6081857fc8ce237f3823d6a1 (diff) | |
download | rneovim-80814d1535812ce2f0f667a73dfd6032cd63402b.tar.gz rneovim-80814d1535812ce2f0f667a73dfd6032cd63402b.tar.bz2 rneovim-80814d1535812ce2f0f667a73dfd6032cd63402b.zip |
ci: remove ci/ from cache key (#23878)
The ci/ directory is now only used for Cirrus, not for GitHub Actions.
-rw-r--r-- | .github/actions/cache/action.yml | 2 |
1 files changed, 1 insertions, 1 deletions
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') }} |