Skip to content

Commit 7306583

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

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.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-24.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: 3 additions & 3 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-24.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,7 +50,7 @@ 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
53+
- uses: actions/checkout@v3
5454
- uses: tarantool/setup-tarantool@v1
5555
with:
5656
tarantool-version: '2.5'

.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-24.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)