mirror of
https://github.com/mattn/vim-lsp-settings.git
synced 2025-12-12 20:35:54 +01:00
upgrade actions/checkout v1 -> v2
This commit is contained in:
2
.github/workflows/linux_neovim.yml
vendored
2
.github/workflows/linux_neovim.yml
vendored
@@ -24,7 +24,7 @@ jobs:
|
|||||||
neovim_version: nightly
|
neovim_version: nightly
|
||||||
runs-on: ${{matrix.os}}
|
runs-on: ${{matrix.os}}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v2
|
||||||
- name: Download neovim
|
- name: Download neovim
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
2
.github/workflows/linux_vim.yml
vendored
2
.github/workflows/linux_vim.yml
vendored
@@ -26,7 +26,7 @@ jobs:
|
|||||||
glibc_version: 2.15
|
glibc_version: 2.15
|
||||||
runs-on: ${{matrix.os}}
|
runs-on: ${{matrix.os}}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v2
|
||||||
- name: Download vim
|
- name: Download vim
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
2
.github/workflows/mac_neovim.yml
vendored
2
.github/workflows/mac_neovim.yml
vendored
@@ -24,7 +24,7 @@ jobs:
|
|||||||
neovim_version: nightly
|
neovim_version: nightly
|
||||||
runs-on: ${{matrix.os}}
|
runs-on: ${{matrix.os}}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v2
|
||||||
- name: Download neovim
|
- name: Download neovim
|
||||||
shell: bash
|
shell: bash
|
||||||
run: curl -L https://github.com/neovim/neovim/releases/download/${{matrix.neovim_version}}/nvim-macos.tar.gz -o ~/nvim.tar.gz
|
run: curl -L https://github.com/neovim/neovim/releases/download/${{matrix.neovim_version}}/nvim-macos.tar.gz -o ~/nvim.tar.gz
|
||||||
|
|||||||
15
.github/workflows/reviewdog.yml
vendored
15
.github/workflows/reviewdog.yml
vendored
@@ -13,10 +13,23 @@ jobs:
|
|||||||
name: runner / vint
|
name: runner / vint
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v2
|
||||||
- name: vint
|
- name: vint
|
||||||
uses: reviewdog/action-vint@v1
|
uses: reviewdog/action-vint@v1
|
||||||
with:
|
with:
|
||||||
github_token: ${{ secrets.github_token }}
|
github_token: ${{ secrets.github_token }}
|
||||||
level: error
|
level: error
|
||||||
reporter: github-pr-review
|
reporter: github-pr-review
|
||||||
|
shellcheck:
|
||||||
|
name: runner / shellcheck
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: shellcheck
|
||||||
|
uses: reviewdog/action-shellcheck@v1
|
||||||
|
with:
|
||||||
|
github_token: ${{ secrets.github_token }}
|
||||||
|
reporter: github-pr-review
|
||||||
|
path: "."
|
||||||
|
pattern: "*.sh"
|
||||||
|
exclude: "./.git/*"
|
||||||
|
|||||||
2
.github/workflows/windows_neovim.yml
vendored
2
.github/workflows/windows_neovim.yml
vendored
@@ -26,7 +26,7 @@ jobs:
|
|||||||
neovim_arch: win64
|
neovim_arch: win64
|
||||||
runs-on: ${{matrix.os}}
|
runs-on: ${{matrix.os}}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v2
|
||||||
- name: Download neovim
|
- name: Download neovim
|
||||||
shell: PowerShell
|
shell: PowerShell
|
||||||
run: Invoke-WebRequest -Uri https://github.com/neovim/neovim/releases/download/${{matrix.neovim_version}}/nvim-${{matrix.neovim_arch}}.zip -OutFile neovim.zip
|
run: Invoke-WebRequest -Uri https://github.com/neovim/neovim/releases/download/${{matrix.neovim_version}}/nvim-${{matrix.neovim_arch}}.zip -OutFile neovim.zip
|
||||||
|
|||||||
2
.github/workflows/windows_vim.yml
vendored
2
.github/workflows/windows_vim.yml
vendored
@@ -33,7 +33,7 @@ jobs:
|
|||||||
vim_ver_path: vim80
|
vim_ver_path: vim80
|
||||||
runs-on: ${{matrix.os}}
|
runs-on: ${{matrix.os}}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v2
|
||||||
- name: Download vim
|
- name: Download vim
|
||||||
shell: PowerShell
|
shell: PowerShell
|
||||||
run: Invoke-WebRequest -Uri https://github.com/vim/vim-win32-installer/releases/download/v${{matrix.vim_version}}/gvim_${{matrix.vim_version}}_${{matrix.vim_arch}}.zip -OutFile vim.zip
|
run: Invoke-WebRequest -Uri https://github.com/vim/vim-win32-installer/releases/download/v${{matrix.vim_version}}/gvim_${{matrix.vim_version}}_${{matrix.vim_arch}}.zip -OutFile vim.zip
|
||||||
|
|||||||
Reference in New Issue
Block a user