diff options
author | kylo252 <[email protected]> | 2022-10-06 08:55:06 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2022-10-06 06:55:06 +0000 |
commit | 9def60f1dd09ac2244672b8570092229977b43b4 (patch) | |
tree | 44bf396deaa7ce20ebc789f95bd03494d2393488 /.github | |
parent | 0d578ab152708019ad10cb7b21fc4a1cb0105a1a (diff) |
feat: lock new installations to nvim 0.8+ (#3111)
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 | 6 | ||||
-rw-r--r-- | .github/workflows/plugins.yml | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/.github/ISSUE_TEMPLATE/general-issue-form.yaml b/.github/ISSUE_TEMPLATE/general-issue-form.yaml index ea8c9cba..8faff6ae 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.7.2) + label: Neovim version (>= 0.8.0) description: "Output of `nvim --version`" placeholder: | NVIM v0.8.0-dev+199-g2875d45e7 diff --git a/.github/ISSUE_TEMPLATE/lsp-issue-form.yaml b/.github/ISSUE_TEMPLATE/lsp-issue-form.yaml index e8079ffa..b3d4713b 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.7) + label: Neovim version (>= 0.8.0) description: "Output of `nvim --version`" placeholder: | NVIM v0.8.0-dev+199-g2875d45e7 diff --git a/.github/workflows/install.yaml b/.github/workflows/install.yaml index e21607ab..8ab27e88 100644 --- a/.github/workflows/install.yaml +++ b/.github/workflows/install.yaml @@ -21,10 +21,10 @@ jobs: include: - runner: ubuntu-latest os: linux - neovim: v0.7.0 + neovim: v0.8.0 - runner: macos-latest os: osx - neovim: v0.7.0 + neovim: v0.8.0 - runner: ubuntu-22.04 os: linux neovim: nightly @@ -78,7 +78,7 @@ jobs: uses: rhysd/action-setup-vim@v1 with: neovim: true - version: v0.7.0 + version: v0.8.0 - name: Install LunarVim timeout-minutes: 4 diff --git a/.github/workflows/plugins.yml b/.github/workflows/plugins.yml index 3df32105..d5c6310f 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.7.0 + version: v0.8.0 - name: Install LunarVim timeout-minutes: 4 |