diff options
author | James McCoy <jamessan@jamessan.com> | 2022-02-18 06:14:53 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-18 06:14:53 -0500 |
commit | 3fb9987eef2bad461ed2f2b8f3b249d84729dcd7 (patch) | |
tree | 0cd35a8e6b3b1cc949e8649c7121d8f0698fb8c0 | |
parent | faeff49cbfd190afba67e221412b7132b7ad8360 (diff) | |
parent | 40473e55a22def8db6df5897b7061bbec3750b81 (diff) | |
download | rneovim-3fb9987eef2bad461ed2f2b8f3b249d84729dcd7.tar.gz rneovim-3fb9987eef2bad461ed2f2b8f3b249d84729dcd7.tar.bz2 rneovim-3fb9987eef2bad461ed2f2b8f3b249d84729dcd7.zip |
Merge pull request #17450 from dundargoc/ci/lint/fix-key
ci(lint): simplify cache key
-rw-r--r-- | .github/workflows/ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index aa77689d9f..d0d995ea29 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,7 +38,7 @@ jobs: path: | ${{ env.CACHE_NVIM_DEPS_DIR }} ~/.ccache - key: ${{ matrix.runner }}-lint-${{ matrix.cc }}-${{ hashFiles('cmake/*', 'third-party/**', '**/CMakeLists.txt') }}-${{ github.base_ref }} + key: lint-${{ hashFiles('cmake/*', 'third-party/**', '**/CMakeLists.txt') }}-${{ github.base_ref }} - name: Build third-party run: ./ci/before_script.sh |