Skip to content

Commit 2372cc2

Browse files
patapenka-alexeyoleg-jukovec
authored andcommitted
ci: bump ubuntu version
Bump actions to use ubuntu-24.04 for fixing the following GitHub warning: The Ubuntu 20.04 Actions runner image will begin deprecation on 2025-02-01. Part of #TNTP-1918
1 parent 154fa91 commit 2372cc2

File tree

3 files changed

+9
-11
lines changed

3 files changed

+9
-11
lines changed

.github/workflows/fast_testing.yml

+4-6
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,13 @@ on:
1111

1212
jobs:
1313
run_tests:
14-
runs-on: ubuntu-latest
14+
runs-on: ubuntu-24.04
1515

1616
strategy:
1717
fail-fast: false
1818
matrix:
1919
tarantool:
20-
- '1.10'
21-
- '2.8'
22-
- '2.10'
20+
- '2.11'
2321

2422
env:
2523
MYSQL_HOST: 127.0.0.1
@@ -29,12 +27,12 @@ jobs:
2927

3028
steps:
3129
- name: Clone the module
32-
uses: actions/checkout@v3
30+
uses: actions/checkout@v4
3331
with:
3432
submodules: recursive
3533

3634
- name: Setup tarantool ${{ matrix.tarantool }}
37-
uses: tarantool/setup-tarantool@v1
35+
uses: tarantool/setup-tarantool@v3
3836
with:
3937
tarantool-version: ${{ matrix.tarantool }}
4038

.github/workflows/publish.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,21 @@ env:
1212

1313
jobs:
1414
publish-rockspec-scm-1:
15-
runs-on: ubuntu-20.04
15+
runs-on: ubuntu-24.04
1616
if: github.ref == 'refs/heads/master'
1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1919

2020
- uses: tarantool/rocks.tarantool.org/github-action@master
2121
with:
2222
auth: ${{ secrets.ROCKS_AUTH }}
2323
files: ${{ env.ROCK_NAME }}-scm-1.rockspec
2424

2525
publish-rockspec-tag:
26-
runs-on: ubuntu-20.04
26+
runs-on: ubuntu-24.04
2727
if: startsWith(github.ref, 'refs/tags')
2828
steps:
29-
- uses: actions/checkout@v3
29+
- uses: actions/checkout@v4
3030

3131
# https://stackoverflow.com/questions/58177786/get-the-current-pushed-tag-in-github-actions
3232
- name: Set env

.github/workflows/reusable_testing.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111

1212
jobs:
1313
run_tests:
14-
runs-on: ubuntu-20.04
14+
runs-on: ubuntu-24.04
1515

1616
env:
1717
MYSQL_HOST: 127.0.0.1

0 commit comments

Comments
 (0)