Skip to content

Commit 9ebfe69

Browse files
ci: bump actions to use ubuntu-24.04
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 5cc6aee commit 9ebfe69

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/packaging.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
if: |
1111
github.event_name == 'push' ||
1212
github.event.pull_request.head.repo.full_name != github.repository
13-
runs-on: ubuntu-20.04
13+
runs-on: ubuntu-24.04
1414
steps:
1515
- name: Check module version
1616
# We need this step to run only on push with tag.
@@ -27,7 +27,7 @@ jobs:
2727
github.event.pull_request.head.repo.full_name != github.repository
2828
# Packaging for CentOS 7 does not work with other versions, see:
2929
# https://github.com/packpack/packpack/issues/145
30-
runs-on: ubuntu-20.04
30+
runs-on: ubuntu-24.04
3131
needs: version-check
3232

3333
strategy:

.github/workflows/publish.yml

+1-1
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

.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
steps:
1616
- name: 'Clone the queue module'
1717
uses: actions/checkout@v4

0 commit comments

Comments
 (0)