File tree Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -29,15 +29,15 @@ jobs:
29
29
echo "GO_VERSION=$(echo ${{ matrix.go-version }} | cut -d. -f-2)" >> $GITHUB_ENV
30
30
31
31
- name : Install Go
32
- uses : actions/setup-go@v2
32
+ uses : actions/setup-go@v3
33
33
with :
34
34
go-version : ${{ matrix.go-version }}
35
35
36
36
- name : Checkout code
37
- uses : actions/checkout@v2
37
+ uses : actions/checkout@v3
38
38
39
39
- name : Cache Go module and build cache
40
- uses : actions/cache@v2
40
+ uses : actions/cache@v3
41
41
with :
42
42
key : ${{ env.OS }}-go-${{ hashFiles('**/go.sum') }}
43
43
path : |
47
47
${{ env.OS }}-go-
48
48
49
49
- name : Cache nvim binary for linux and darwin
50
- uses : actions/cache@v2
50
+ uses : actions/cache@v3
51
51
id : cache-nvim
52
52
with :
53
53
key : ${{ env.OS }}-nvim-${{ hashFiles('~/nvim/bin/nvim') }}
68
68
go test -v -count=3 -run=none -bench=. -benchmem -timeout=15m ./... | tee bench-${{ env.OS }}-${{ env.GO_VERSION }}.txt
69
69
70
70
- name : ' Upload benchmark Artifact'
71
- uses : actions/upload-artifact@v2
71
+ uses : actions/upload-artifact@v3
72
72
with :
73
73
name : bench-${{ env.OS }}-${{ env.GO_VERSION }}.txt
74
74
path : bench-${{ env.OS }}-${{ env.GO_VERSION }}.txt
Original file line number Diff line number Diff line change 25
25
26
26
steps :
27
27
- name : Checkout repository
28
- uses : actions/checkout@v2
28
+ uses : actions/checkout@v3
29
29
30
30
- name : Initialize CodeQL
31
31
uses : github/codeql-action/init@v1
Original file line number Diff line number Diff line change @@ -44,15 +44,15 @@ jobs:
44
44
echo "NVIM_VERSION=$(if [ ${{ matrix.neovim-version }} != 'nightly' ]; then echo 'stable'; else echo 'nightly'; fi)" >> $GITHUB_ENV
45
45
46
46
- name : Install Go
47
- uses : actions/setup-go@v2
47
+ uses : actions/setup-go@v3
48
48
with :
49
49
go-version : ${{ matrix.go-version }}
50
50
51
51
- name : Checkout code
52
- uses : actions/checkout@v2
52
+ uses : actions/checkout@v3
53
53
54
54
- name : Cache Go module and build cache
55
- uses : actions/cache@v2
55
+ uses : actions/cache@v3
56
56
with :
57
57
key : go-${{ env.OS }}-${{ hashFiles('**/go.mod') }}
58
58
path : |
You can’t perform that action at this time.
0 commit comments