Skip to content

Commit ab0c412

Browse files
workflows use ubuntu-24.04
1 parent 970e41d commit ab0c412

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/ci.js.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
precheck:
12-
runs-on: ubuntu-22.04
12+
runs-on: ubuntu-24.04
1313

1414
steps:
1515
- uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5
@@ -25,7 +25,7 @@ jobs:
2525
run: yarn lint
2626

2727
unit_tests:
28-
runs-on: ubuntu-22.04
28+
runs-on: ubuntu-24.04
2929

3030
strategy:
3131
matrix:
@@ -42,7 +42,7 @@ jobs:
4242
run: yarn install --frozen-lockfile
4343

4444
smoke_tests:
45-
runs-on: ubuntu-22.04
45+
runs-on: ubuntu-24.04
4646
steps:
4747
- name: Checkout code
4848
uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b

.github/workflows/format-code.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
jobs:
88
format:
99
name: 'Format code'
10-
runs-on: ubuntu-22.04
10+
runs-on: ubuntu-24.04
1111
if: github.event.issue.pull_request != '' && contains(github.event.comment.body, '/format')
1212
steps:
1313
- name: 'Post acknowledgement that it will format code'

.github/workflows/pr.ci.js.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on: pull_request
77

88
jobs:
99
precheck:
10-
runs-on: ubuntu-22.04
10+
runs-on: ubuntu-24.04
1111

1212
steps:
1313
- name: Checkout PR
@@ -25,7 +25,7 @@ jobs:
2525
run: yarn lint
2626

2727
ci:
28-
runs-on: ubuntu-22.04
28+
runs-on: ubuntu-24.04
2929

3030
strategy:
3131
matrix:

.github/workflows/verify-code-formatting.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
verify:
10-
runs-on: ubuntu-22.04
10+
runs-on: ubuntu-24.04
1111
steps:
1212
- name: 'Checkout code'
1313
uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5

0 commit comments

Comments
 (0)