Skip to content

Commit 91450be

Browse files
authored
Upgrade to ubuntu-22.04. (#173)
1 parent f8358cb commit 91450be

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/ci.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
# Abort if the code isn't formatted according to rustfmt standards from nightly.
1111
fmt:
1212
name: Rustfmt
13-
runs-on: ubuntu-18.04
13+
runs-on: ubuntu-22.04
1414
steps:
1515
- uses: actions/checkout@v2
1616
- name: Cache cargo
@@ -36,11 +36,11 @@ jobs:
3636
strategy:
3737
matrix:
3838
include:
39-
- os: ubuntu-18.04
39+
- os: ubuntu-22.04
4040
target: aarch64-linux-android # Android x64
41-
- os: ubuntu-18.04
41+
- os: ubuntu-22.04
4242
target: x86_64-unknown-linux-musl # Alpine Linux x86_64
43-
- os: ubuntu-18.04
43+
- os: ubuntu-22.04
4444
target: wasm32-unknown-unknown
4545
features: --features wasm --no-default-features
4646
- os: macos-10.15
@@ -69,7 +69,7 @@ jobs:
6969
# Run the tests on only one architecture, against various Rust versions.
7070
test:
7171
name: Test Suite
72-
runs-on: ubuntu-18.04
72+
runs-on: ubuntu-22.04
7373
strategy:
7474
matrix:
7575
rust:
@@ -93,7 +93,7 @@ jobs:
9393
# Benchmark current and base revisions, if this is a PR.
9494
bench:
9595
name: Bench
96-
runs-on: ubuntu-18.04
96+
runs-on: ubuntu-22.04
9797
if: github.base_ref != ''
9898
strategy:
9999
matrix:
@@ -133,7 +133,7 @@ jobs:
133133
needs:
134134
- bench
135135
name: Upload benchmark results
136-
runs-on: ubuntu-18.04
136+
runs-on: ubuntu-22.04
137137
steps:
138138
- uses: actions/checkout@v2
139139
- name: Cache cargo

.github/workflows/security-audit.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
- cron: "0 8 * * *" # 8AM UTC, 3PM MST
55
jobs:
66
audit:
7-
runs-on: ubuntu-18.04
7+
runs-on: ubuntu-22.04
88
steps:
99
- uses: actions/checkout@v2
1010
- uses: actions-rs/audit-check@v1

0 commit comments

Comments
 (0)