Skip to content

Commit 0502dfa

Browse files
authored
Merge 292a63d into f43082e
2 parents f43082e + 292a63d commit 0502dfa

File tree

5 files changed

+23
-10
lines changed

5 files changed

+23
-10
lines changed

.github/workflows/build.yaml

+9-9
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ concurrency:
2424
jobs:
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
@@ -37,7 +37,7 @@ jobs:
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
@@ -66,7 +66,7 @@ jobs:
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
@@ -97,7 +97,7 @@ jobs:
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

.github/workflows/release.yaml

+2
Original file line numberDiff line numberDiff 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

.prettierignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
lib/vscode
22
lib/vscode-reh-web-linux-x64
33
release-standalone
4+
release-packages
45
release
56
helm-chart
67
test/scripts

CHANGELOG.md

+9
Original file line numberDiff line numberDiff 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

2534
Code v1.72.1

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,8 @@
116116
"ide",
117117
"coder",
118118
"vscode-remote",
119-
"browser-ide"
119+
"browser-ide",
120+
"remote-development"
120121
],
121122
"engines": {
122123
"node": "16"

0 commit comments

Comments
 (0)