Skip to content

Commit 07a57b1

Browse files
workflows use ubuntu-24.04 (#167)
1 parent 7439d03 commit 07a57b1

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
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:
@@ -48,7 +48,7 @@ jobs:
4848
run: yarn test:e2e
4949

5050
smoke_tests:
51-
runs-on: ubuntu-22.04
51+
runs-on: ubuntu-24.04
5252
steps:
5353
- name: Checkout code
5454
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608

.github/workflows/codeql.yml

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

1717
jobs:
1818
analyze:
19-
runs-on: ubuntu-22.04
19+
runs-on: ubuntu-24.04
2020

2121
strategy:
2222
fail-fast: false

.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: 3 additions & 3 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
unit_tests:
28-
runs-on: ubuntu-22.04
28+
runs-on: ubuntu-24.04
2929

3030
strategy:
3131
matrix:
@@ -50,7 +50,7 @@ jobs:
5050
run: yarn test:e2e
5151

5252
smoke_tests:
53-
runs-on: ubuntu-22.04
53+
runs-on: ubuntu-24.04
5454
steps:
5555
- name: Checkout code
5656
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608

.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)