File tree Expand file tree Collapse file tree 4 files changed +12
-14
lines changed Expand file tree Collapse file tree 4 files changed +12
-14
lines changed Original file line number Diff line number Diff line change 10
10
if : |
11
11
github.event_name == 'push' ||
12
12
github.event.pull_request.head.repo.full_name != github.repository
13
- runs-on : ubuntu-20 .04
13
+ runs-on : ubuntu-24 .04
14
14
steps :
15
15
- name : Check module version
16
16
# We need this step to run only on push with tag.
27
27
github.event.pull_request.head.repo.full_name != github.repository
28
28
# Packaging for CentOS 7 does not work with other versions, see:
29
29
# https://github.com/packpack/packpack/issues/145
30
- runs-on : ubuntu-20 .04
30
+ runs-on : ubuntu-24 .04
31
31
needs : version-check
32
32
33
33
strategy :
@@ -53,12 +53,12 @@ jobs:
53
53
54
54
steps :
55
55
- name : Clone the module
56
- uses : actions/checkout@v3
56
+ uses : actions/checkout@v4
57
57
with :
58
58
fetch-depth : 0
59
59
60
60
- name : Clone the packpack tool
61
- uses : actions/checkout@v3
61
+ uses : actions/checkout@v4
62
62
with :
63
63
repository : packpack/packpack
64
64
path : packpack
Original file line number Diff line number Diff line change @@ -14,15 +14,15 @@ jobs:
14
14
version-check :
15
15
# We need this job to run only on push with tag.
16
16
if : ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') }}
17
- runs-on : ubuntu-20 .04
17
+ runs-on : ubuntu-24 .04
18
18
steps :
19
19
- name : Check module version
20
20
uses : tarantool/actions/check-module-version@master
21
21
with :
22
22
module-name : " avro_schema"
23
23
24
24
push-scm-rockspec :
25
- runs-on : ubuntu-20 .04
25
+ runs-on : ubuntu-24 .04
26
26
if : github.ref == 'refs/heads/master'
27
27
steps :
28
28
- uses : actions/checkout@master
33
33
files : ${{ env.ROCK_NAME }}-scm-1.rockspec
34
34
35
35
push-tagged-rockspec :
36
- runs-on : ubuntu-20 .04
36
+ runs-on : ubuntu-24 .04
37
37
if : startsWith(github.ref, 'refs/tags')
38
38
needs : version-check
39
39
steps :
Original file line number Diff line number Diff line change 11
11
12
12
jobs :
13
13
run_tests :
14
- runs-on : ubuntu-20 .04
14
+ runs-on : ubuntu-24 .04
15
15
steps :
16
16
- name : ' Clone the avro-schema module'
17
17
uses : actions/checkout@v4
Original file line number Diff line number Diff line change @@ -15,22 +15,20 @@ jobs:
15
15
if : github.event_name == 'push' ||
16
16
github.event.pull_request.head.repo.full_name != github.repository
17
17
18
- runs-on : ubuntu-20 .04
18
+ runs-on : ubuntu-24 .04
19
19
20
20
strategy :
21
21
fail-fast : false
22
22
matrix :
23
23
tarantool :
24
- - ' 1.10'
25
- - ' 2.8'
26
- - ' 2.10'
24
+ - ' 2.11'
27
25
28
26
steps :
29
27
- name : Clone the module
30
- uses : actions/checkout@v3
28
+ uses : actions/checkout@v4
31
29
32
30
- name : Setup tarantool ${{ matrix.tarantool }}
33
- uses : tarantool/setup-tarantool@v2
31
+ uses : tarantool/setup-tarantool@v3
34
32
with :
35
33
tarantool-version : ${{ matrix.tarantool }}
36
34
You can’t perform that action at this time.
0 commit comments