Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 8 additions & 13 deletions .github/workflows/build-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,26 +28,21 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

- name: Setup Node 20
uses: actions/setup-node@v4
- name: Use Node.js 24.x
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
with:
node-version: 20.x
node-version: 24.x

- name: Install tools and libraries
run: sudo apt-get install -y build-essential libx11-dev libxkbfile-dev libsecret-1-dev

- name: Use Python 3.11
uses: actions/setup-python@v5
- name: Use Python 3.13
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: '3.11'
python-version: '3.13'

- name: Install and Build
shell: bash
run: |
yarn global add node-gyp
yarn --skip-integrity-check --network-timeout 100000
run: yarn
env:
NODE_OPTIONS: --max_old_space_size=4096
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
23 changes: 9 additions & 14 deletions .github/workflows/publish-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,29 +18,24 @@ jobs:
if: ${{ github.event.workflow_run.conclusion == 'success' }}

steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 0 # pulls all history and tags for Lerna to detect which packages changed

- name: Setup Node 20
uses: actions/setup-node@v4
- name: Use Node.js 24.x
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
with:
node-version: 20.x
node-version: 24.x

- name: Install tools and libraries
run: sudo apt-get install -y build-essential libx11-dev libxkbfile-dev libsecret-1-dev

- name: Use Python 3.11
uses: actions/setup-python@v5
- name: Use Python 3.13
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: '3.11'
python-version: '3.13'

- name: Install and Build
shell: bash
run: |
yarn global add node-gyp
yarn --skip-integrity-check --network-timeout 100000
run: yarn
env:
NODE_OPTIONS: --max_old_space_size=4096
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
26 changes: 13 additions & 13 deletions example/browser-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,22 @@
"license": "(EPL-2.0 OR MIT)",
"version": "0.7.0",
"dependencies": {
"@theia/core": "1.68.2",
"@theia/editor": "1.68.2",
"@theia/filesystem": "1.68.2",
"@theia/markers": "1.68.2",
"@theia/messages": "1.68.2",
"@theia/monaco": "1.68.2",
"@theia/navigator": "1.68.2",
"@theia/preferences": "1.68.2",
"@theia/process": "1.68.2",
"@theia/property-view": "1.68.2",
"@theia/terminal": "1.68.2",
"@theia/workspace": "1.68.2",
"@theia/core": "1.71.2",
"@theia/editor": "1.71.2",
"@theia/filesystem": "1.71.2",
"@theia/markers": "1.71.2",
"@theia/messages": "1.71.2",
"@theia/monaco": "1.71.2",
"@theia/navigator": "1.71.2",
"@theia/preferences": "1.71.2",
"@theia/process": "1.71.2",
"@theia/property-view": "1.71.2",
"@theia/terminal": "1.71.2",
"@theia/workspace": "1.71.2",
"@eclipse-emfcloud/person-detail-property-view": "*"
},
"devDependencies": {
"@theia/cli": "1.68.2"
"@theia/cli": "1.71.2"
},
"scripts": {
"prepare": "yarn run clean && yarn build",
Expand Down
10 changes: 5 additions & 5 deletions jsonforms-property-view/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@
"@jsonforms/core": "^3.0.0",
"@jsonforms/react": "^3.0.0",
"@jsonforms/vanilla-renderers": "^3.0.0",
"@theia/core": "^1.68.2",
"@theia/filesystem": "^1.68.2",
"@theia/property-view": "^1.68.2",
"@theia/workspace": "^1.68.2",
"@theia/core": "^1.71.2",
"@theia/filesystem": "^1.71.2",
"@theia/property-view": "^1.71.2",
"@theia/workspace": "^1.71.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
Expand All @@ -57,4 +57,4 @@
"frontend": "lib/browser/frontend-module"
}
]
}
}
Loading