Skip to content

Commit 6dcb94a

Browse files
committed
Bump Ubuntu version in workflows
Signed-off-by: Leonid Kondrashov <[email protected]>
1 parent 79d89ad commit 6dcb94a

File tree

13 files changed

+23
-19
lines changed

13 files changed

+23
-19
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
fail-fast: false
2828

2929
name: Build and check code quality
30-
runs-on: ubuntu-20.04
30+
runs-on: ubuntu-24.04
3131
steps:
3232

3333
- name: Check out code into the Go module directory

.github/workflows/build_docker_images.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
function_images:
1111
name: Build function docker images
12-
runs-on: ubuntu-20.04
12+
runs-on: ubuntu-24.04
1313
strategy:
1414
fail-fast: false
1515
matrix:
@@ -29,7 +29,7 @@ jobs:
2929
DOCKER_BUILDKIT=1 docker build ./function-images/${{ matrix.image }}
3030
integ_test_image:
3131
name: Build integration test docker images
32-
runs-on: ubuntu-20.04
32+
runs-on: ubuntu-24.04
3333
strategy:
3434
fail-fast: false
3535
matrix:

.github/workflows/build_setup.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ env:
2020
jobs:
2121
build_setup:
2222
name: Build setup scripts
23-
runs-on: ubuntu-20.04
23+
runs-on: ubuntu-24.04
2424
steps:
2525

2626
- name: Check out the code

.github/workflows/linters.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
jobs:
99
build:
1010
name: Spellcheck
11-
runs-on: ubuntu-20.04
11+
runs-on: ubuntu-24.04
1212
steps:
1313
- uses: actions/checkout@v4
1414
- uses: rojopolis/[email protected]
@@ -17,7 +17,7 @@ jobs:
1717
config_path: configs/.spellcheck.yml
1818
commitlint:
1919
name: Commitlint
20-
runs-on: ubuntu-20.04
20+
runs-on: ubuntu-24.04
2121
steps:
2222
- uses: actions/checkout@v4
2323
with:
@@ -37,7 +37,7 @@ jobs:
3737
--verbose
3838
markdown-link-check:
3939
name: LinkCheck
40-
runs-on: ubuntu-20.04
40+
runs-on: ubuntu-24.04
4141
steps:
4242
- uses: actions/checkout@v4
4343
- uses: gaurav-nelson/github-action-markdown-link-check@v1

.github/workflows/skip_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ env:
2020
jobs:
2121
build:
2222
name: Build and check code quality
23-
runs-on: ubuntu-20.04
23+
runs-on: ubuntu-24.04
2424
steps:
2525
- run: 'echo "This check not required"'

.github/workflows/skip_build_setup.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ env:
2020
jobs:
2121
build_setup:
2222
name: Build setup scripts
23-
runs-on: ubuntu-20.04
23+
runs-on: ubuntu-24.04
2424
steps:
2525
- run: 'echo "This check not required"'

.github/workflows/skip_stargz_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ env:
2222
jobs:
2323
stargz-container-test:
2424
name: Test running stargz-based image using kn
25-
runs-on: ubuntu-20.04
25+
runs-on: ubuntu-24.04
2626
steps:
2727
- run: 'echo "This check not required"'

.github/workflows/skip_unit_tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,18 +22,18 @@ env:
2222
jobs:
2323
unit-test:
2424
name: Unit test
25-
runs-on: ubuntu-20.04
25+
runs-on: ubuntu-24.04
2626
steps:
2727
- run: 'echo "This check not required"'
2828

2929
profile-unit-test:
3030
name: "Unit test: profile unit test"
31-
runs-on: ubuntu-20.04
31+
runs-on: ubuntu-24.04
3232
steps:
3333
- run: 'echo "This check not required"'
3434

3535
firecracker-containerd-interface-test:
3636
name: "Unit tests: Firecracker-containerd interface"
37-
runs-on: ubuntu-20.04
37+
runs-on: ubuntu-24.04
3838
steps:
3939
- run: 'echo "This check not required"'

.github/workflows/stargz_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
KIND_VERSION: v0.22.0
2727
K8S_VERSION: v1.29
2828
YAML_DIR: workloads/container
29-
runs-on: ubuntu-20.04
29+
runs-on: ubuntu-24.04
3030
strategy:
3131
fail-fast: false
3232
matrix:

.github/workflows/unit_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ env:
2222
jobs:
2323
unit-test:
2424
name: Unit test
25-
runs-on: ubuntu-20.04
25+
runs-on: ubuntu-24.04
2626
strategy:
2727
fail-fast: false
2828
matrix:

0 commit comments

Comments
 (0)