Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/buildtest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
VIMVER: ${{ matrix.type }}-${{ matrix.vim }}
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Setup env
run: |
cat ENVFILE >> $GITHUB_ENV
Expand Down Expand Up @@ -94,13 +94,13 @@ jobs:
run: |
echo "set luadll=$(brew --prefix lua)/lib/liblua.dylib" > ${GITHUB_WORKSPACE}/.themisrc
- name: Setup vim-themis
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: thinca/vim-themis
ref: ${{ env.THEMIS_VERSION }}
path: ${{ github.workspace }}/vim-themis
- name: Setup vimproc
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: Shougo/vimproc.vim
path: ${{ github.workspace }}/vimproc
Expand Down Expand Up @@ -153,7 +153,7 @@ jobs:
run: |
git config --global core.autocrlf input
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Setup env
shell: bash
run: |
Expand Down Expand Up @@ -227,13 +227,13 @@ jobs:
vim_type: '${{ matrix.type }}'
download: '${{ matrix.vim_download || matrix.download }}'
- name: Setup vim-themis
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: thinca/vim-themis
ref: ${{ env.THEMIS_VERSION }}
path: ${{ github.workspace }}/vim-themis
- name: Setup vimproc
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: Shougo/vimproc.vim
ref: ${{ env.VIMPROC_VERSION }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/depup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
submodules: true

Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
submodules: true

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/reviewdog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out code.
uses: actions/checkout@v4
uses: actions/checkout@v5
- uses: haya14busa/action-cond@v1
id: reporter
with:
Expand All @@ -30,7 +30,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out code.
uses: actions/checkout@v4
uses: actions/checkout@v5
- uses: haya14busa/action-cond@v1
id: reporter
with:
Expand All @@ -47,7 +47,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out code.
uses: actions/checkout@v4
uses: actions/checkout@v5
- uses: haya14busa/action-cond@v1
id: reporter
with:
Expand All @@ -65,7 +65,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out code.
uses: actions/checkout@v4
uses: actions/checkout@v5
- uses: haya14busa/action-cond@v1
id: reporter
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/vimhelptagcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: help tag check
uses: tsuyoshicho/action-vimhelp-tagname-check@v1
Loading