Skip to content

Commit f5851cc

Browse files
committed
switch all workflow jobs from ubuntu 22.04 to 24.04 (jammy->noble)
1 parent 5a85e31 commit f5851cc

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/master.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ env:
1515
jobs:
1616
cache-stack:
1717
name: 'Cache Stack'
18-
runs-on: ubuntu-22.04
18+
runs-on: ubuntu-24.04
1919
steps:
2020
- name: Install prerequisites
2121
run: |

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
release:
3636
name: 'Release'
3737
needs: draft-release
38-
runs-on: ubuntu-22.04
38+
runs-on: ubuntu-24.04
3939
steps:
4040
- name: Check out code
4141
uses: actions/checkout@v4
@@ -73,7 +73,7 @@ jobs:
7373
ubuntu-package:
7474
name: 'Build Ubuntu package'
7575
needs: draft-release
76-
runs-on: ubuntu-22.04
76+
runs-on: ubuntu-24.04
7777
steps:
7878
- name: Check out code
7979
uses: actions/checkout@v4

.github/workflows/test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ env:
1717
jobs:
1818
formatting:
1919
name: 'Formatting and Style'
20-
runs-on: ubuntu-22.04
20+
runs-on: ubuntu-24.04
2121
steps:
2222
- name: 'Check out code'
2323
uses: actions/checkout@v4
@@ -75,8 +75,8 @@ jobs:
7575
fail-fast: false
7676
matrix:
7777
include:
78-
- runner: ubuntu-22.04
79-
os: ubuntu-22.04
78+
- runner: ubuntu-24.04
79+
os: ubuntu-24.04
8080
nix: x86_64-linux
8181
- runner: self-macos-latest
8282
os: self-macos-latest
@@ -187,7 +187,7 @@ jobs:
187187
stack:
188188
name: 'Stack / Unit Tests'
189189
needs: formatting
190-
runs-on: ubuntu-22.04
190+
runs-on: ubuntu-24.04
191191
steps:
192192
- name: Install prerequisites
193193
run: |
@@ -231,12 +231,12 @@ jobs:
231231
run: stack test kore:kore-test hs-backend-booster:unit-tests
232232

233233
- name: Build Ubuntu package
234-
run: ./package/debian/build-package jammy k-haskell-backend.deb
234+
run: ./package/debian/build-package noble k-haskell-backend.deb
235235

236236
hlint:
237237
name: 'HLint'
238238
needs: formatting
239-
runs-on: ubuntu-22.04
239+
runs-on: ubuntu-24.04
240240
steps:
241241
- name: 'Check out code'
242242
uses: actions/checkout@v4

0 commit comments

Comments
 (0)