diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/ISSUE_TEMPLATE/general-issue-form.yaml | 4 | ||||
-rw-r--r-- | .github/ISSUE_TEMPLATE/lsp-issue-form.yaml | 4 | ||||
-rw-r--r-- | .github/workflows/install.yaml | 6 |
3 files changed, 7 insertions, 7 deletions
diff --git a/.github/ISSUE_TEMPLATE/general-issue-form.yaml b/.github/ISSUE_TEMPLATE/general-issue-form.yaml index f78a1ed5..2c4fca07 100644 --- a/.github/ISSUE_TEMPLATE/general-issue-form.yaml +++ b/.github/ISSUE_TEMPLATE/general-issue-form.yaml @@ -34,10 +34,10 @@ body: - type: input id: nvim-version attributes: - label: Neovim version (>= 0.8.0) + label: Neovim version (>= 0.9.0) description: "Output of `nvim --version`" placeholder: | - NVIM v0.8.0-dev+199-g2875d45e7 + NVIM v0.9.0-dev-983+g6dfabd014 validations: required: true - type: input diff --git a/.github/ISSUE_TEMPLATE/lsp-issue-form.yaml b/.github/ISSUE_TEMPLATE/lsp-issue-form.yaml index 06590ed8..88d4a180 100644 --- a/.github/ISSUE_TEMPLATE/lsp-issue-form.yaml +++ b/.github/ISSUE_TEMPLATE/lsp-issue-form.yaml @@ -27,10 +27,10 @@ body: - type: input id: nvim-version attributes: - label: Neovim version (>= 0.8.0) + label: Neovim version (>= 0.9.0) description: "Output of `nvim --version`" placeholder: | - NVIM v0.8.0-dev+199-g2875d45e7 + NVIM v0.9.0-dev-983+g6dfabd014 validations: required: true - type: input diff --git a/.github/workflows/install.yaml b/.github/workflows/install.yaml index 5f72bcac..6dc269fa 100644 --- a/.github/workflows/install.yaml +++ b/.github/workflows/install.yaml @@ -21,10 +21,10 @@ jobs: include: - runner: ubuntu-latest os: linux - neovim: v0.8.0 + neovim: v0.9.0 - runner: macos-latest os: osx - neovim: v0.8.0 + neovim: v0.9.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.8.0 + version: v0.9.0 - name: Install LunarVim timeout-minutes: 4 |