File tree Expand file tree Collapse file tree 5 files changed +23
-10
lines changed Expand file tree Collapse file tree 5 files changed +23
-10
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ concurrency:
2424jobs :
2525 prettier :
2626 name : Format with Prettier
27- runs-on : ubuntu-latest
27+ runs-on : ubuntu-20.04
2828 timeout-minutes : 5
2929 steps :
3030 - name : Checkout repo
3737
3838 doctoc :
3939 name : Doctoc markdown files
40- runs-on : ubuntu-latest
40+ runs-on : ubuntu-20.04
4141 timeout-minutes : 5
4242 steps :
4343 - name : Checkout repo
6666
6767 lint-helm :
6868 name : Lint Helm chart
69- runs-on : ubuntu-latest
69+ runs-on : ubuntu-20.04
7070 timeout-minutes : 5
7171 steps :
7272 - name : Checkout repo
9797
9898 lint-ts :
9999 name : Lint TypeScript files
100- runs-on : ubuntu-latest
100+ runs-on : ubuntu-20.04
101101 timeout-minutes : 5
102102 steps :
103103 - name : Checkout repo
@@ -141,7 +141,7 @@ jobs:
141141
142142 build :
143143 name : Build code-server
144- runs-on : ubuntu-latest
144+ runs-on : ubuntu-20.04
145145 timeout-minutes : 30
146146 env :
147147 CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
@@ -244,7 +244,7 @@ jobs:
244244 # Only run if PR comes from base repo or event is not a PR
245245 # Reason: forks cannot access secrets and this will always fail
246246 if : github.event.pull_request.head.repo.full_name == github.repository || github.event_name != 'pull_request'
247- runs-on : ubuntu-latest
247+ runs-on : ubuntu-20.04
248248 steps :
249249 - name : Checkout repo
250250 uses : actions/checkout@v3
@@ -295,8 +295,8 @@ jobs:
295295 test-e2e :
296296 name : Run e2e tests
297297 needs : build
298- runs-on : ubuntu-latest
299- timeout-minutes : 15
298+ runs-on : ubuntu-20.04
299+ timeout-minutes : 25
300300 steps :
301301 - name : Checkout repo
302302 uses : actions/checkout@v3
@@ -351,7 +351,7 @@ jobs:
351351 test-e2e-proxy :
352352 name : Run e2e tests behind proxy
353353 needs : build
354- runs-on : ubuntu-latest
354+ runs-on : ubuntu-20.04
355355 timeout-minutes : 25
356356 steps :
357357 - name : Checkout repo
Original file line number Diff line number Diff line change @@ -322,6 +322,8 @@ jobs:
322322 echo "Updating version in lib/vscode/product.json"
323323 tmp=$(mktemp)
324324 jq '.codeServerVersion = "$VERSION"' release/lib/vscode/product.json > "$tmp" && mv "$tmp" release/lib/vscode/product.json
325+ # Ensure it has the same permissions as before
326+ chmod 644 release/lib/vscode/product.json
325327
326328 - name : Compress release package
327329 run : tar -czf package.tar.gz release
Original file line number Diff line number Diff line change 11lib /vscode
22lib /vscode-reh-web-linux-x64
33release-standalone
4+ release-packages
45release
56helm-chart
67test /scripts
Original file line number Diff line number Diff line change @@ -20,6 +20,15 @@ Code v99.99.999
2020
2121-->
2222
23+ ## [ 4.9.0] ( https://github.com/coder/code-server/releases/tag/v4.9.0 ) - 2022-11-14
24+
25+ Code v1.73.0
26+
27+ WIP
28+
29+ known issues: https://github.com/adobe/fetch/pull/318#issuecomment-1306070259
30+ cert won't work for anyone using Ubuntu 22.04
31+
2332## [ 4.8.3] ( https://github.com/coder/code-server/releases/tag/v4.8.3 ) - 2022-11-07
2433
2534Code v1.72.1
Original file line number Diff line number Diff line change 116116 " ide" ,
117117 " coder" ,
118118 " vscode-remote" ,
119- " browser-ide"
119+ " browser-ide" ,
120+ " remote-development"
120121 ],
121122 "engines" : {
122123 "node" : " 16"
You can’t perform that action at this time.
0 commit comments