File tree Expand file tree Collapse file tree 4 files changed +13
-64
lines changed Expand file tree Collapse file tree 4 files changed +13
-64
lines changed Original file line number Diff line number Diff line change 12
12
github.event_name == 'pull_request' &&
13
13
github.event.pull_request.head.repo.full_name != github.repository
14
14
steps :
15
- - uses : actions/checkout@master
15
+ - uses : actions/checkout@v5
16
16
17
17
- name : Setup Tarantool
18
18
uses : tarantool/setup-tarantool@v4
@@ -32,15 +32,15 @@ jobs:
32
32
run : ./.rocks/bin/luacheck .
33
33
34
34
golangci-lint :
35
- runs-on : ubuntu-22.04
35
+ runs-on : ubuntu-latest
36
36
if : |
37
37
github.event_name == 'push' ||
38
38
github.event_name == 'pull_request' &&
39
39
github.event.pull_request.head.repo.full_name != github.repository
40
40
steps :
41
- - uses : actions/setup-go@v2
41
+ - uses : actions/setup-go@v5
42
42
43
- - uses : actions/checkout@v2
43
+ - uses : actions/checkout@v5
44
44
45
45
- name : golangci-lint
46
46
uses : golangci/golangci-lint-action@v3
@@ -57,16 +57,16 @@ jobs:
57
57
args : --out-${NO_FUTURE}format colored-line-number --config=.golangci.yaml
58
58
59
59
codespell :
60
- runs-on : ubuntu-22.04
60
+ runs-on : ubuntu-latest
61
61
if : |
62
62
github.event_name == 'push' ||
63
63
github.event_name == 'pull_request' &&
64
64
github.event.pull_request.head.repo.full_name != github.repository
65
65
steps :
66
- - uses : actions/checkout@master
66
+ - uses : actions/checkout@v5
67
67
68
68
- name : Install codespell
69
69
run : pip3 install codespell
70
70
71
71
- name : Run codespell
72
- run : make codespell
72
+ run : make codespell
Original file line number Diff line number Diff line change 26
26
runs-on : ${{ inputs.os }}
27
27
steps :
28
28
- name : Clone the connector
29
- uses : actions/checkout@v3
29
+ uses : actions/checkout@v5
30
30
31
31
- name : Setup tt
32
32
run : |
74
74
run : echo "${GITHUB_WORKSPACE}/bin" >> $GITHUB_PATH
75
75
76
76
- name : Setup golang for the connector and tests
77
- uses : actions/setup-go@v3
77
+ uses : actions/setup-go@v5
78
78
with :
79
79
go-version : ${{ inputs.go-version }}
80
80
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 96
96
runs-on : ${{ matrix.runs-on }}
97
97
steps :
98
98
- name : Clone the connector
99
- uses : actions/checkout@v3
99
+ uses : actions/checkout@v5
100
100
with :
101
101
path : ${{ env.SRCDIR }}
102
102
@@ -117,7 +117,7 @@ jobs:
117
117
if : matrix.tarantool != 'brew' && steps.cache.outputs.cache-hit != 'true'
118
118
119
119
- name : Clone tarantool ${{ env.T_VERSION }}
120
- uses : actions/checkout@v3
120
+ uses : actions/checkout@v5
121
121
with :
122
122
repository : tarantool/tarantool
123
123
ref : ${{ env.T_VERSION }}
@@ -188,7 +188,7 @@ jobs:
188
188
if : matrix.tarantool != 'brew' && matrix.tarantool != 'master'
189
189
190
190
- name : Setup golang for the connector and tests
191
- uses : actions/setup-go@v3
191
+ uses : actions/setup-go@v5
192
192
with :
193
193
go-version : ${{ matrix.golang }}
194
194
@@ -224,4 +224,4 @@ jobs:
224
224
if : matrix.golang == 'stable'
225
225
run : |
226
226
cd "${SRCDIR}"
227
- make bench-deps bench DURATION=1x COUNT=1
227
+ make bench-deps bench DURATION=1x COUNT=1
You can’t perform that action at this time.
0 commit comments