Skip to content

Commit 15963aa

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 e454711 commit 15963aa

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/check.yaml

Lines changed: 1 addition & 1 deletion
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@v3

.github/workflows/publish.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
jobs:
99
publish-scm-1:
1010
if: github.ref == 'refs/heads/master'
11-
runs-on: ubuntu-22.04
11+
runs-on: ubuntu-24.04
1212
steps:
1313
- uses: actions/checkout@v3
1414

@@ -23,7 +23,7 @@ jobs:
2323

2424
publish-tag:
2525
if: startsWith(github.ref, 'refs/tags/')
26-
runs-on: ubuntu-latest
26+
runs-on: ubuntu-24.04
2727
steps:
2828
# https://github.com/luarocks/luarocks/wiki/Types-of-rocks
2929
- uses: actions/checkout@v3
@@ -54,7 +54,7 @@ jobs:
5454
github.event_name == 'push' ||
5555
github.event_name == 'pull_request' &&
5656
github.event.pull_request.head.repo.full_name != github.repository
57-
runs-on: ubuntu-22.04
57+
runs-on: ubuntu-24.04
5858
steps:
5959
- uses: actions/checkout@v3
6060

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- "5.2"
1919
- "5.1"
2020
fail-fast: false
21-
runs-on: ubuntu-22.04
21+
runs-on: ubuntu-24.04
2222
steps:
2323
- uses: actions/checkout@v3
2424

0 commit comments

Comments
 (0)