File tree Expand file tree Collapse file tree 1 file changed +10
-7
lines changed Expand file tree Collapse file tree 1 file changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -20,13 +20,14 @@ jobs:
2020 strategy :
2121 matrix :
2222 os :
23- - ubuntu-22.04 # https://github.com/actions/runner-images/blob/main/images/linux/Ubuntu2204 -Readme.md
23+ - ubuntu-22.04 # https://github.com/actions/runner-images/blob/main/images/ubuntu/Ubuntu2404 -Readme.md
2424 - macos-13 # https://github.com/actions/runner-images/blob/main/images/macos/macos-13-Readme.md
25- - windows-2022 # https://github.com/actions/runner-images/blob/main/images/win/Windows2022-Readme.md
25+ - macos-14 # https://github.com/actions/runner-images/blob/main/images/macos/macos-14-Readme.md
26+ - windows-2022 # https://github.com/actions/runner-images/blob/main/images/windows/Windows2022-Readme.md
2627 go-version :
27- - 1.18.x
28- - 1.19.x
2928 - 1.20.x
29+ - 1.21.x
30+ - 1.22.x
3031 neovim-version :
3132 - v0.9.1
3233 - nightly
@@ -42,12 +43,14 @@ jobs:
4243 echo "NVIM_VERSION=$(if [ ${{ matrix.neovim-version }} != 'nightly' ]; then echo 'stable'; else echo 'nightly'; fi)" >> $GITHUB_ENV
4344
4445 - name : Install Go
45- uses : actions/setup-go@v3
46+ uses : actions/setup-go@v5
4647 with :
4748 go-version : ${{ matrix.go-version }}
49+ check-latest : true
50+ cache-dependency-path : go.mod
4851
4952 - name : Checkout code
50- uses : actions/checkout@v3
53+ uses : actions/checkout@v4
5154
5255 - name : Install neovim binary
5356 uses : rhysd/action-setup-vim@v1
6366 run : |
6467 go test -v -race -count=1 -covermode=atomic -coverpkg=./... -coverprofile=coverage.out ./...
6568
66- - uses : codecov/codecov-action@v3
69+ - uses : codecov/codecov-action@v4
6770 with :
6871 file : coverage.out
6972 flags : ${{ env.OS }}-${{ env.GO_VERSION }}-${{ env.NVIM_VERSION }}
You can’t perform that action at this time.
0 commit comments