summaryrefslogtreecommitdiff
path: root/.github/workflows/install.yaml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/install.yaml')
-rw-r--r--.github/workflows/install.yaml12
1 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/install.yaml b/.github/workflows/install.yaml
index e21607ab..5f72bcac 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
@@ -33,13 +33,13 @@ jobs:
neovim: nightly
runs-on: ${{ matrix.runner }}
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- name: Install neovim binary from release
env:
RELEASE_VER: ${{ matrix.neovim }}
run: |
- echo "$HOME/.local/bin" >> $GITHUB_PATH
+ echo "$HOME/.local/bin" >> "$GITHUB_PATH"
bash ./utils/installer/install-neovim-from-release
- name: Install LunarVim
@@ -72,13 +72,13 @@ jobs:
shell: pwsh
steps:
# it's not currently possbile to run tests on windows, see nvim-lua/plenary.nvim#255
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- name: Install neovim binary
uses: rhysd/action-setup-vim@v1
with:
neovim: true
- version: v0.7.0
+ version: v0.8.0
- name: Install LunarVim
timeout-minutes: 4