diff options
author | kylo252 <[email protected]> | 2022-04-27 17:37:27 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2022-04-27 17:37:27 +0200 |
commit | 3de829e76ed3d90b25250b1ab76f6425146af9d2 (patch) | |
tree | 82531570f5bc868b520d29c93dc07763afb8f52e /.github | |
parent | f49f687bc244ff603f3dde6828a85538c50df220 (diff) |
refactor: lock new installations to nvim v0.7+ (#2526)
Diffstat (limited to '.github')
-rw-r--r-- | .github/ISSUE_TEMPLATE/general-issue-form.yaml | 2 | ||||
-rw-r--r-- | .github/ISSUE_TEMPLATE/lsp-issue-form.yaml | 2 | ||||
-rw-r--r-- | .github/workflows/install.yaml | 2 | ||||
-rw-r--r-- | .github/workflows/plugins.yml | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/.github/ISSUE_TEMPLATE/general-issue-form.yaml b/.github/ISSUE_TEMPLATE/general-issue-form.yaml index fed53efe..fcf22684 100644 --- a/.github/ISSUE_TEMPLATE/general-issue-form.yaml +++ b/.github/ISSUE_TEMPLATE/general-issue-form.yaml @@ -33,7 +33,7 @@ body: - type: input id: nvim-version attributes: - label: Neovim version (>= 0.6.1) + label: Neovim version (>= 0.7) description: "Output of `nvim --version`" placeholder: | NVIM v0.7-dev+209-g0603eba6e diff --git a/.github/ISSUE_TEMPLATE/lsp-issue-form.yaml b/.github/ISSUE_TEMPLATE/lsp-issue-form.yaml index 6c6d3235..6b326b26 100644 --- a/.github/ISSUE_TEMPLATE/lsp-issue-form.yaml +++ b/.github/ISSUE_TEMPLATE/lsp-issue-form.yaml @@ -27,7 +27,7 @@ body: - type: input id: nvim-version attributes: - label: Neovim version (>= 0.6.1) + label: Neovim version (>= 0.7) description: "Output of `nvim --version`" placeholder: | NVIM v0.7-dev+209-g0603eba6e diff --git a/.github/workflows/install.yaml b/.github/workflows/install.yaml index 54da94bc..51336ed9 100644 --- a/.github/workflows/install.yaml +++ b/.github/workflows/install.yaml @@ -57,7 +57,7 @@ jobs: uses: rhysd/action-setup-vim@v1 with: neovim: true - version: v0.6.1 + version: v0.7.0 - name: Install LunarVim timeout-minutes: 4 diff --git a/.github/workflows/plugins.yml b/.github/workflows/plugins.yml index ba16ddca..d84c6b36 100644 --- a/.github/workflows/plugins.yml +++ b/.github/workflows/plugins.yml @@ -33,7 +33,7 @@ jobs: uses: rhysd/action-setup-vim@v1 with: neovim: true - version: v0.6.1 + version: v0.7 - name: Install LunarVim timeout-minutes: 4 |