Skip to content

Commit a6213a0

Browse files
striezelkhuey
authored andcommitted
Update CI workflows to use Ubuntu 22.04 instead of Ubuntu 18.04
The Ubuntu 18.04 GitHub Actions runner image has been deprecated on 2022-08-08 and will be removed on 2023-04-01. For more information see <actions/runner-images#6002>.
1 parent b6e5513 commit a6213a0

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ env:
77

88
jobs:
99
debug:
10-
runs-on: ubuntu-18.04
10+
runs-on: ubuntu-22.04
1111
steps:
1212
- uses: actions/checkout@v3
1313
- name: Build
@@ -16,7 +16,7 @@ jobs:
1616
run: cargo test --verbose
1717

1818
release:
19-
runs-on: ubuntu-18.04
19+
runs-on: ubuntu-22.04
2020
steps:
2121
- uses: actions/checkout@v3
2222
- name: Build
@@ -25,7 +25,7 @@ jobs:
2525
run: cargo test --verbose --release
2626

2727
debug-nostd:
28-
runs-on: ubuntu-18.04
28+
runs-on: ubuntu-22.04
2929
steps:
3030
- uses: actions/checkout@v3
3131
- name: Build
@@ -34,7 +34,7 @@ jobs:
3434
run: cargo test --verbose --no-default-features --features alloc
3535

3636
release-nostd:
37-
runs-on: ubuntu-18.04
37+
runs-on: ubuntu-22.04
3838
steps:
3939
- uses: actions/checkout@v3
4040
- name: Build
@@ -43,7 +43,7 @@ jobs:
4343
run: cargo test --verbose --release --no-default-features --features alloc
4444

4545
c_api:
46-
runs-on: ubuntu-18.04
46+
runs-on: ubuntu-22.04
4747
steps:
4848
- uses: actions/checkout@v3
4949
- name: Run c_api test

0 commit comments

Comments
 (0)