fix: use github.com source for setup-java and set Forgejo server URL
Some checks failed
CI / Lint, type check, unit tests, coverage (push) Failing after 1m10s
CI / E2E browser tests (push) Failing after 35s

- Change actions/setup-java@v4 to https://github.com/actions/setup-java@v4
  (not mirrored on code.forgejo.org)
- Add FORGEJO_SERVER_URL env var set to https://srvr.nu/git
  (runner checkout was missing /git/ subpath prefix)
This commit is contained in:
Joakim Mörling 2026-05-19 16:07:28 +02:00
parent 8892e0402b
commit 0be3bc473d

View file

@ -6,6 +6,9 @@ on:
pull_request:
branches: [master, develop]
env:
FORGEJO_SERVER_URL: https://srvr.nu/git
jobs:
lint-and-test:
name: Lint, type check, unit tests, coverage
@ -19,7 +22,7 @@ jobs:
cache: npm
cache-dependency-path: frontend/package-lock.json
- uses: actions/setup-java@v4
- uses: https://github.com/actions/setup-java@v4
with:
distribution: temurin
java-version: 21