Skip to content

Commit 11d2c13

Browse files
authored
ci: pin GitHub runner to Ubuntu 20.04 (#57)
As noted in GitHub's [supported runners] documentation, GitHub is in the process of transitioning `ubuntu-latest` from `ubuntu-20.04` to `ubuntu-22.04` (jammy). Since OpenVINO does not yet have installation packages for Ubuntu 22.04, this change pins the GitHub runner to the older version for now. [supported runners]: https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources * fix: also pin converter tool action
1 parent dc2812e commit 11d2c13

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
# binaries, then compile against these).
5656
runtime_binaries:
5757
name: From runtime-linked binaries
58-
runs-on: ubuntu-latest
58+
runs-on: ubuntu-20.04
5959
steps:
6060
- uses: actions/checkout@v2
6161
with:
@@ -87,7 +87,7 @@ jobs:
8787
# commands.
8888
converter:
8989
name: Converter tool
90-
runs-on: ubuntu-latest
90+
runs-on: ubuntu-20.04
9191
defaults:
9292
run:
9393
working-directory: crates/openvino-tensor-converter

0 commit comments

Comments
 (0)