neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit 80814d1535812ce2f0f667a73dfd6032cd63402b
parent 843c1bed95d35f7c6081857fc8ce237f3823d6a1
Author: zeertzjq <zeertzjq@outlook.com>
Date:   Fri,  2 Jun 2023 17:38:42 +0800

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

The ci/ directory is now only used for Cirrus, not for GitHub Actions.
Diffstat:
M.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 @@ -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') }}