Skip to content

Commit 88fb3f6

Browse files
authored
Pin Ubuntu CI versions to 22.04 (eclipse-theia#14275)
1 parent 91c254d commit 88fb3f6

File tree

10 files changed

+13
-13
lines changed

10 files changed

+13
-13
lines changed

.github/workflows/ci-cd.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
lint:
1515
name: Lint
16-
runs-on: ubuntu-latest
16+
runs-on: ubuntu-22.04
1717
timeout-minutes: 60
1818

1919
steps:
@@ -51,7 +51,7 @@ jobs:
5151
strategy:
5252
fail-fast: false
5353
matrix:
54-
os: [windows-2019, ubuntu-latest, macos-14]
54+
os: [windows-2019, ubuntu-22.04, macos-14]
5555
node: [18.x, 20.x]
5656

5757
runs-on: ${{ matrix.os }}

.github/workflows/license-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
os: [ubuntu-latest]
22+
os: [ubuntu-22.04]
2323
node: ['20.x']
2424
java: ['11']
2525

.github/workflows/performance-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
build-and-test-performance:
88
name: Performance Tests
99

10-
runs-on: ubuntu-latest
10+
runs-on: ubuntu-22.04
1111
timeout-minutes: 30
1212

1313
steps:

.github/workflows/playwright.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ on:
1313

1414
jobs:
1515
build-and-test-playwright:
16-
name: Playwright Tests (ubuntu-latest, Node.js 18.x)
16+
name: Playwright Tests (ubuntu-22.04, Node.js 18.x)
1717

18-
runs-on: ubuntu-latest
18+
runs-on: ubuntu-22.04
1919
timeout-minutes: 60
2020

2121
steps:

.github/workflows/production-smoke-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ on:
1111

1212
jobs:
1313
build-and-test-playwright:
14-
name: Smoke Test for Browser Example Production Build on ubuntu-latest with Node.js 18.x
14+
name: Smoke Test for Browser Example Production Build on ubuntu-22.04 with Node.js 18.x
1515

16-
runs-on: ubuntu-latest
16+
runs-on: ubuntu-22.04
1717
timeout-minutes: 60
1818

1919
steps:

.github/workflows/publish-gh-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
publish:
88
name: Publish to NPM and GitHub pages
99
needs: build
10-
runs-on: ubuntu-latest
10+
runs-on: ubuntu-22.04
1111

1212
# The current approach is silly. We should be smarter and use `actions/upload-artifact` and `actions/download-artifact` instead of rebuilding
1313
# everything from scratch again. (git checkout, Node.js install, yarn, etc.) It was not possible to share artifacts on Travis CI without an

.github/workflows/publish-next.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on: workflow_dispatch
88
jobs:
99
publish:
1010
name: Perform Publishing
11-
runs-on: ubuntu-latest
11+
runs-on: ubuntu-22.04
1212
timeout-minutes: 60
1313
steps:
1414
- name: Checkout

.github/workflows/publish-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ on:
1818
jobs:
1919
publish:
2020
name: Perform Publishing
21-
runs-on: ubuntu-latest
21+
runs-on: ubuntu-22.04
2222
timeout-minutes: 60
2323
steps:
2424
- name: Checkout

.github/workflows/set-milestone-on-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ on:
2222
jobs:
2323
set-milestone:
2424
if: github.event.pull_request.merged == true
25-
runs-on: ubuntu-latest
25+
runs-on: ubuntu-22.04
2626
steps:
2727
- name: Checkout code
2828
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0

.github/workflows/translation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on: workflow_dispatch
55
jobs:
66
translation:
77
name: Translation Update
8-
runs-on: ubuntu-latest
8+
runs-on: ubuntu-22.04
99
timeout-minutes: 60
1010

1111
steps:

0 commit comments

Comments
 (0)