diff options
| author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-02-10 13:56:07 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-10 13:56:07 +0100 |
| commit | d5b1712dc4ced82e15a9a736626d4e2e3370c9b4 (patch) | |
| tree | d5981376ba3e62f6d3a14cb1f3c5106f682fe436 /.github/actions/cache | |
| parent | 827947447e4d084e30850ff6530023c9db6d317f (diff) | |
| download | rneovim-d5b1712dc4ced82e15a9a736626d4e2e3370c9b4.tar.gz rneovim-d5b1712dc4ced82e15a9a736626d4e2e3370c9b4.tar.bz2 rneovim-d5b1712dc4ced82e15a9a736626d4e2e3370c9b4.zip | |
ci: remove unnecessary environment variables (#22175)
Diffstat (limited to '.github/actions/cache')
| -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 d6a5d1e43f..819380f351 100644 --- a/.github/actions/cache/action.yml +++ b/.github/actions/cache/action.yml @@ -16,7 +16,7 @@ runs: # files to search through. - uses: actions/cache@v3 with: - path: ${{ env.CACHE_NVIM_DEPS_DIR }} + path: ${{ env.DEPS_BUILD_DIR }} key: ${{ env.CACHE_KEY }}-${{ hashFiles('cmake**', 'ci/**', '.github/workflows/ci.yml', 'CMakeLists.txt', 'runtime/CMakeLists.txt', 'src/nvim/**/CMakeLists.txt') }} |