Skip to content

Commit d546a59

Browse files
committed
.github/workflows: switch images to Ubuntu noble
Ubuntu focal (20.4) images are not supported for Github Actions since 2025-04-15. References: actions/runner-images#11101
1 parent cd8ec0d commit d546a59

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/bump_version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on: workflow_dispatch
55
jobs:
66
release:
77
name: Bump Version
8-
runs-on: ubuntu-20.04
8+
runs-on: ubuntu-24.04
99
steps:
1010
- uses: actions/checkout@v3
1111
- run: |

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
jobs:
1212
lint:
1313
name: Coding style and linting checks
14-
runs-on: ubuntu-20.04
14+
runs-on: ubuntu-24.04
1515
steps:
1616
- uses: actions/checkout@v3
1717
- run: |
@@ -22,7 +22,7 @@ jobs:
2222

2323
test:
2424
name: Test with docker image ${{ matrix.docker-image }}
25-
runs-on: ubuntu-20.04
25+
runs-on: ubuntu-24.04
2626
strategy:
2727
matrix:
2828
docker-image:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on: workflow_dispatch
55
jobs:
66
release:
77
name: Release
8-
runs-on: ubuntu-20.04
8+
runs-on: ubuntu-24.04
99
steps:
1010
- uses: actions/checkout@v3
1111
- run: |

0 commit comments

Comments
 (0)