Skip to content

Commit 99aa1e1

Browse files
committed
fix: pin host in CI to use ubuntu 22.04
1 parent 554f8bc commit 99aa1e1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/pyth.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
branches: [pyth-v1.14.17]
77
jobs:
88
test:
9-
runs-on: ubuntu-latest
9+
runs-on: ubuntu-22.04
1010
steps:
1111
- uses: actions/checkout@v2
1212
- uses: actions-rs/toolchain@v1
@@ -22,7 +22,7 @@ jobs:
2222
- name: Run tests
2323
run: cargo test -p solana-runtime pyth
2424
clippy:
25-
runs-on: ubuntu-latest
25+
runs-on: ubuntu-22.04
2626
steps:
2727
- uses: actions/checkout@v2
2828
- uses: actions-rs/toolchain@v1
@@ -38,7 +38,7 @@ jobs:
3838
- name: Check clippy
3939
run: cargo clippy --bins --tests --examples -- --deny warnings
4040
format:
41-
runs-on: ubuntu-latest
41+
runs-on: ubuntu-22.04
4242
steps:
4343
- uses: actions/checkout@v2
4444
- uses: actions-rs/toolchain@v1

0 commit comments

Comments
 (0)