Skip to content

Commit ca5a046

Browse files
committed
ci: bump ubuntu version
Github Actions breaks `check` workflow due to scheduled Ubuntu 20.04 brownout. Ubuntu 20.04 LTS runner will be removed on 2025-04-15, see [1]. The patch bumps an Ubuntu version in workflows. 1. actions/runner-images#11101
1 parent 0b0ac38 commit ca5a046

File tree

7 files changed

+10
-9
lines changed

7 files changed

+10
-9
lines changed

.github/workflows/cflite_batch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ permissions: read-all
1515

1616
jobs:
1717
luajit:
18-
runs-on: ubuntu-20.04
18+
runs-on: ubuntu-24.04
1919
strategy:
2020
fail-fast: false
2121
matrix:

.github/workflows/cflite_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ permissions: read-all
1010

1111
jobs:
1212
luajit:
13-
runs-on: ubuntu-20.04
13+
runs-on: ubuntu-24.04
1414
strategy:
1515
fail-fast: false
1616
matrix:

.github/workflows/cflite_cron.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
# are covered by fuzzing.
1717

1818
Coverage:
19-
runs-on: ubuntu-20.04
19+
runs-on: ubuntu-24.04
2020
steps:
2121
- uses: actions/checkout@v4
2222
- uses: ./.github/actions/setup
@@ -46,7 +46,7 @@ jobs:
4646
# code coverage.
4747

4848
Pruning:
49-
runs-on: ubuntu-20.04
49+
runs-on: ubuntu-24.04
5050
steps:
5151
- uses: actions/checkout@v4
5252
- uses: ./.github/actions/setup

.github/workflows/cflite_pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ permissions: read-all
3535

3636
jobs:
3737
luajit:
38-
runs-on: ubuntu-20.04
38+
runs-on: ubuntu-24.04
3939
strategy:
4040
fail-fast: false
4141
matrix:

.github/workflows/check.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
github.event_name == 'pull_request' &&
1212
github.event.pull_request.head.repo.full_name != github.repository
1313
14-
runs-on: ubuntu-20.04
14+
runs-on: ubuntu-24.04
1515

1616
steps:
1717
- uses: actions/checkout@v4
@@ -31,7 +31,7 @@ jobs:
3131
github.event_name == 'pull_request' &&
3232
github.event.pull_request.head.repo.full_name != github.repository
3333
34-
runs-on: ubuntu-20.04
34+
runs-on: ubuntu-24.04
3535

3636
steps:
3737
- uses: actions/checkout@v4

.github/workflows/oss-fuzz.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ concurrency:
3232

3333
jobs:
3434
lua:
35-
runs-on: ubuntu-latest
35+
runs-on: ubuntu-24.04
3636

3737
strategy:
3838
fail-fast: false

.github/workflows/test.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- "luajit"
3636
- "tarantool"
3737
fail-fast: false
38-
runs-on: ubuntu-22.04
38+
runs-on: ubuntu-24.04
3939
steps:
4040
- uses: actions/checkout@v4
4141
with:
@@ -57,6 +57,7 @@ jobs:
5757
pkg-config \
5858
protobuf-compiler \
5959
build-essential \
60+
libreadline-dev \
6061
liblz4-dev \
6162
autoconf \
6263
automake \

0 commit comments

Comments
 (0)