Skip to content

Commit f7dcaad

Browse files
Bump runners to ubuntu-latest (#3283)
### Changes Bump runners to use `ubuntu-latest`, currently ubuntu-24.04 ### Reason for changes The Ubuntu-20.04 brownout takes place from 2025-02-01.
1 parent 9fa5750 commit f7dcaad

15 files changed

+24
-24
lines changed

.github/workflows/api_changes_check.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
compare-api-doc-with-develop:
2222
timeout-minutes: 30
2323
needs: call-build-api-doc
24-
runs-on: ubuntu-20.04
24+
runs-on: ubuntu-latest
2525
permissions:
2626
issues: write
2727
steps:

.github/workflows/build_and_publish_doc.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
uses: ./.github/workflows/build_schema_page.yml
2323
publish:
2424
needs: [call-build-html-doc, call-build-schema-page]
25-
runs-on: ubuntu-20.04
25+
runs-on: ubuntu-latest
2626
steps:
2727
- name: Checkout main repo # the github-pages-deploy-action seems to require this step
2828
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6

.github/workflows/build_html_doc.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
jobs:
1111
build-html:
1212
timeout-minutes: 10
13-
runs-on: ubuntu-20.04
13+
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout
1616
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6

.github/workflows/build_schema_page.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
jobs:
88
build-config-schema-html:
9-
runs-on: ubuntu-20.04
9+
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout
1212
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6

.github/workflows/call_precommit.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ on:
2222
jobs:
2323
common:
2424
timeout-minutes: 40
25-
runs-on: ubuntu-20.04
25+
runs-on: ubuntu-latest
2626
defaults:
2727
run:
2828
shell: bash
@@ -48,7 +48,7 @@ jobs:
4848

4949
onnx:
5050
timeout-minutes: 40
51-
runs-on: ubuntu-20.04-8-cores
51+
runs-on: ubuntu-latest-8-cores
5252
defaults:
5353
run:
5454
shell: bash
@@ -74,7 +74,7 @@ jobs:
7474

7575
openvino:
7676
timeout-minutes: 40
77-
runs-on: ubuntu-20.04-8-cores
77+
runs-on: ubuntu-latest-8-cores
7878
defaults:
7979
run:
8080
shell: bash
@@ -100,7 +100,7 @@ jobs:
100100

101101
pytorch-cpu:
102102
timeout-minutes: 40
103-
runs-on: ubuntu-20.04-8-cores
103+
runs-on: ubuntu-latest-8-cores
104104
defaults:
105105
run:
106106
shell: bash
@@ -187,7 +187,7 @@ jobs:
187187
188188
tensorflow:
189189
timeout-minutes: 40
190-
runs-on: ubuntu-20.04-8-cores
190+
runs-on: ubuntu-latest-8-cores
191191
if: ${{ inputs.python_version != '3.12' }}
192192
defaults:
193193
run:
@@ -216,7 +216,7 @@ jobs:
216216

217217
tools:
218218
timeout-minutes: 40
219-
runs-on: ubuntu-20.04
219+
runs-on: ubuntu-latest
220220
defaults:
221221
run:
222222
shell: bash
@@ -236,7 +236,7 @@ jobs:
236236

237237
pytorch2-cpu:
238238
timeout-minutes: 40
239-
runs-on: ubuntu-20.04
239+
runs-on: ubuntu-latest
240240
defaults:
241241
run:
242242
shell: bash

.github/workflows/conformance_weight_compression.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515
jobs:
1616
examples-cpu:
1717
name: Weight compression [${{ matrix.group }}/3]
18-
runs-on: ubuntu-22.04-16-cores
18+
runs-on: ubuntu-latest-16-cores
1919
timeout-minutes: 40
2020
strategy:
2121
fail-fast: false

.github/workflows/examples.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ concurrency:
2323
jobs:
2424
examples-cpu:
2525
name: Test exmaples CPU [${{ matrix.group }}/4]
26-
runs-on: ubuntu-22.04-16-cores
26+
runs-on: ubuntu-latest-16-cores
2727
strategy:
2828
fail-fast: false
2929
matrix:

.github/workflows/install.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fail-fast: false
1818
matrix:
1919
backend: ["torch", "tf", "onnx", "openvino"]
20-
runner: ["windows-latest", "ubuntu-22.04"]
20+
runner: ["windows-latest", "ubuntu-latest"]
2121
defaults:
2222
run:
2323
shell: bash

.github/workflows/labeler.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
permissions:
99
contents: read
1010
pull-requests: write
11-
runs-on: ubuntu-20.04
11+
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/labeler@8558fd74291d67161a8a78ce36a881fa63b766a9 # v5.0.0
1414
with:

.github/workflows/model_hub.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
jobs:
88
torch:
9-
runs-on: ubuntu-20.04-16-cores
9+
runs-on: ubuntu-latest-16-cores
1010
defaults:
1111
run:
1212
shell: bash

.github/workflows/mypy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515

1616
jobs:
1717
mypy:
18-
runs-on: ubuntu-20.04
18+
runs-on: ubuntu-latest
1919
steps:
2020
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
2121
- uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0

.github/workflows/nightly.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ jobs:
1616
uses: ./.github/workflows/examples.yml
1717

1818
md-dead-link-check:
19-
runs-on: ubuntu-22.04
19+
runs-on: ubuntu-latest
2020
if: github.repository_owner == 'openvinotoolkit'
2121
timeout-minutes: 10
2222
steps:
2323
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
2424
- uses: AlexanderDokuchaev/md-dead-link-check@c7210ef8a38c194a119834e39d212387d19b512c # v1.1.0
2525

2626
tensorflow:
27-
runs-on: ubuntu-20.04-8-cores
27+
runs-on: ubuntu-latest-8-cores
2828
if: github.repository_owner == 'openvinotoolkit'
2929
timeout-minutes: 60
3030
defaults:

.github/workflows/pre-commit-linters.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010

1111
jobs:
1212
pre-commit:
13-
runs-on: ubuntu-20.04
13+
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
1616
- uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
@@ -21,7 +21,7 @@ jobs:
2121
- name: Run pre-commit linter suite
2222
run: make pre-commit
2323
md-dead-link-check:
24-
runs-on: ubuntu-22.04
24+
runs-on: ubuntu-latest
2525
steps:
2626
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
2727
- uses: AlexanderDokuchaev/md-dead-link-check@c7210ef8a38c194a119834e39d212387d19b512c # v1.1.0

.github/workflows/python-publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ on:
2323
jobs:
2424
deploy:
2525

26-
runs-on: ubuntu-20.04
26+
runs-on: ubuntu-latest
2727

2828
steps:
2929
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6

.github/workflows/sdl.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515
jobs:
1616
bandit:
1717
name: Bandit
18-
runs-on: ubuntu-20.04
18+
runs-on: ubuntu-latest
1919
timeout-minutes: 10
2020
defaults:
2121
run:
@@ -32,7 +32,7 @@ jobs:
3232

3333
codeql:
3434
name: CodeQL
35-
runs-on: ubuntu-22.04
35+
runs-on: ubuntu-latest
3636
timeout-minutes: 15
3737
permissions:
3838
security-events: write

0 commit comments

Comments
 (0)