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 1212 github.event_name == 'pull_request' &&
1313 github.event.pull_request.head.repo.full_name != github.repository
1414 steps :
15- - uses : actions/checkout@master
15+ - uses : actions/checkout@v5
1616
1717 - name : Setup Tarantool
1818 uses : tarantool/setup-tarantool@v4
@@ -32,15 +32,15 @@ jobs:
3232 run : ./.rocks/bin/luacheck .
3333
3434 golangci-lint :
35- runs-on : ubuntu-22.04
35+ runs-on : ubuntu-latest
3636 if : |
3737 github.event_name == 'push' ||
3838 github.event_name == 'pull_request' &&
3939 github.event.pull_request.head.repo.full_name != github.repository
4040 steps :
41- - uses : actions/setup-go@v2
41+ - uses : actions/setup-go@v5
4242
43- - uses : actions/checkout@v2
43+ - uses : actions/checkout@v5
4444
4545 - name : golangci-lint
4646 uses : golangci/golangci-lint-action@v3
@@ -57,16 +57,16 @@ jobs:
5757 args : --out-${NO_FUTURE}format colored-line-number --config=.golangci.yaml
5858
5959 codespell :
60- runs-on : ubuntu-22.04
60+ runs-on : ubuntu-latest
6161 if : |
6262 github.event_name == 'push' ||
6363 github.event_name == 'pull_request' &&
6464 github.event.pull_request.head.repo.full_name != github.repository
6565 steps :
66- - uses : actions/checkout@master
66+ - uses : actions/checkout@v5
6767
6868 - name : Install codespell
6969 run : pip3 install codespell
7070
7171 - name : Run codespell
72- run : make codespell
72+ run : make codespell
Original file line number Diff line number Diff line change 2626 runs-on : ${{ inputs.os }}
2727 steps :
2828 - name : Clone the connector
29- uses : actions/checkout@v3
29+ uses : actions/checkout@v5
3030
3131 - name : Setup tt
3232 run : |
7474 run : echo "${GITHUB_WORKSPACE}/bin" >> $GITHUB_PATH
7575
7676 - name : Setup golang for the connector and tests
77- uses : actions/setup-go@v3
77+ uses : actions/setup-go@v5
7878 with :
7979 go-version : ${{ inputs.go-version }}
8080
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 9696 runs-on : ${{ matrix.runs-on }}
9797 steps :
9898 - name : Clone the connector
99- uses : actions/checkout@v3
99+ uses : actions/checkout@v5
100100 with :
101101 path : ${{ env.SRCDIR }}
102102
@@ -117,7 +117,7 @@ jobs:
117117 if : matrix.tarantool != 'brew' && steps.cache.outputs.cache-hit != 'true'
118118
119119 - name : Clone tarantool ${{ env.T_VERSION }}
120- uses : actions/checkout@v3
120+ uses : actions/checkout@v5
121121 with :
122122 repository : tarantool/tarantool
123123 ref : ${{ env.T_VERSION }}
@@ -188,7 +188,7 @@ jobs:
188188 if : matrix.tarantool != 'brew' && matrix.tarantool != 'master'
189189
190190 - name : Setup golang for the connector and tests
191- uses : actions/setup-go@v3
191+ uses : actions/setup-go@v5
192192 with :
193193 go-version : ${{ matrix.golang }}
194194
@@ -224,4 +224,4 @@ jobs:
224224 if : matrix.golang == 'stable'
225225 run : |
226226 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