Update Code to 1.98.0 (#7249)

* Update Code to 1.98.0

* Avoid sudo when launching caddy

It is erroring about needing a password, but also do we even need to run
this as root considering we are not binding to privileged ports?

---------

Co-authored-by: Asher <ash@coder.com>
This commit is contained in:
Olivier Benz
2025-03-06 21:32:11 +01:00
committed by GitHub
parent 6f8493ebc6
commit 31c211aded
11 changed files with 16 additions and 16 deletions

View File

@@ -377,12 +377,12 @@ jobs:
mkdir -p ~/.cache/caddy
tar -xzf caddy_2.5.2_linux_amd64.tar.gz --directory ~/.cache/caddy
- run: sudo ~/.cache/caddy/caddy start --config ./ci/Caddyfile
- run: ~/.cache/caddy/caddy start --config ./ci/Caddyfile
- run: CODE_SERVER_TEST_ENTRY=./release npm run test:e2e:proxy
- if: always()
run: sudo ~/.cache/caddy/caddy stop --config ./ci/Caddyfile
run: ~/.cache/caddy/caddy stop --config ./ci/Caddyfile
- if: always()
uses: actions/upload-artifact@v4