Skip to content

Commit abb2225

Browse files
committed
ci: update Ubuntu runners
Ubuntu version 20.04 will soon be fully unsupported, so this patch updates it to 22.04. actions/runner-images#11101 Part of TNTP-1058
1 parent c035e19 commit abb2225

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/check_on_push.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
- uses: actions/checkout@master
1515

1616
- name: Setup Tarantool
17-
uses: tarantool/setup-tarantool@v1
17+
uses: tarantool/setup-tarantool@v3
1818
with:
19-
tarantool-version: '2.8'
19+
tarantool-version: '2.11'
2020

2121
- name: Setup luacheck
2222
run: tarantoolctl rocks install luacheck 0.25.0

.github/workflows/packaging.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
jobs:
1313
# Run not only on tags, otherwise dependent job will skip.
1414
version-check:
15-
runs-on: ubuntu-20.04
15+
runs-on: ubuntu-22.04
1616
steps:
1717
- name: Check module version
1818
# We need this step to run only on push with tag.

.github/workflows/publish.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
version-check:
1010
# We need this job to run only on push with tag.
1111
if: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') }}
12-
runs-on: ubuntu-20.04
12+
runs-on: ubuntu-22.04
1313
steps:
1414
- name: Check module version
1515
uses: tarantool/actions/check-module-version@master
@@ -20,7 +20,7 @@ jobs:
2020
if: github.ref == 'refs/heads/master'
2121
runs-on: ubuntu-latest
2222
steps:
23-
- uses: actions/checkout@v2
23+
- uses: actions/checkout@v3
2424
- uses: tarantool/rocks.tarantool.org/github-action@master
2525
with:
2626
auth: ${{ secrets.ROCKS_AUTH }}
@@ -50,10 +50,10 @@ jobs:
5050
# LuaJIT's FFI and tarantool specific features are okay.
5151
#
5252
# [1]: https://github.com/luarocks/luarocks/wiki/Types-of-rocks
53-
- uses: actions/checkout@v2
54-
- uses: tarantool/setup-tarantool@v1
53+
- uses: actions/checkout@v3
54+
- uses: tarantool/setup-tarantool@v3
5555
with:
56-
tarantool-version: '2.5'
56+
tarantool-version: '2.11'
5757

5858
# Make a release
5959
- run: echo TAG=${GITHUB_REF##*/} >> $GITHUB_ENV

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
include:
1616
- tarantool: '2.11'
1717
coveralls: true
18-
runs-on: [ubuntu-20.04]
18+
runs-on: [ubuntu-22.04]
1919
steps:
2020
- uses: actions/checkout@master
2121
- uses: tarantool/setup-tarantool@v3
@@ -36,7 +36,7 @@ jobs:
3636
run: tt install tarantool ${{ matrix.tarantool }} --dynamic
3737

3838
- name: Cache rocks
39-
uses: actions/cache@v2
39+
uses: actions/cache@v3
4040
id: cache-rocks
4141
with:
4242
path: .rocks/

0 commit comments

Comments
 (0)