Skip to content

Commit

Permalink
chore(deps): update actions/checkout action to v4 (#1495)
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Sep 4, 2023
1 parent 7dd6b72 commit d802909
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/linux_neovim.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
run: |
# https://github.com/Zettlr/Zettlr/issues/3517
sudo apt-get install libfuse2
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Download neovim
shell: bash
run: |
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
env:
GO111MODULE: 'on'
- name: Download test runner
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: thinca/vim-themis
path: ./vim-themis
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/linux_vim.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
run: |
# https://github.com/Zettlr/Zettlr/issues/3517
sudo apt-get install libfuse2
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Download vim
shell: bash
run: |
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
env:
GO111MODULE: 'on'
- name: Download test runner
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: thinca/vim-themis
path: ./vim-themis
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/mac_neovim.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
runs-on: ${{matrix.os}}
continue-on-error: ${{matrix.allow_failure}}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Download neovim
shell: bash
run: curl -L https://github.com/neovim/neovim/releases/download/${{matrix.neovim_version}}/nvim-macos.tar.gz -o ~/nvim.tar.gz
Expand All @@ -46,7 +46,7 @@ jobs:
run: tar xzf ~/nvim.tar.gz -C ~/
continue-on-error: ${{matrix.allow_failure}}
- name: Download test runner
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: thinca/vim-themis
path: ./vim-themis
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/mac_vim.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install MacVim
shell: bash
run: brew install macvim
- name: Download test runner
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: thinca/vim-themis
path: ./vim-themis
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reviewdog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: runner / vint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: vint
uses: reviewdog/action-vint@v1
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/windows_neovim.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
runs-on: ${{matrix.os}}
continue-on-error: ${{matrix.allow_failure}}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Download neovim
shell: PowerShell
run: Invoke-WebRequest -Uri https://github.com/neovim/neovim/releases/download/${{matrix.neovim_version}}/nvim-${{matrix.neovim_arch}}.zip -OutFile neovim.zip
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
env:
GO111MODULE: 'on'
- name: Download test runner
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: thinca/vim-themis
path: ./vim-themis
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/windows_vim.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
vim_ver_path: vim80
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Download vim
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
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
env:
GO111MODULE: 'on'
- name: Download test runner
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: thinca/vim-themis
path: ./vim-themis
Expand Down

0 comments on commit d802909

Please sign in to comment.