release/0.4.0 #60

Merged
myrmidex merged 30 commits from release/0.4.0 into main 2026-08-16 11:58:52 +02:00
Showing only changes of commit bb0b94f8fe - Show all commits

View file

@ -110,9 +110,16 @@ jobs:
build: build:
runs-on: docker runs-on: docker
container: container:
# Vite 8 needs node >= 22.12, so the CI image's bookworm nodejs is too old
# for this job and it gets its own image.
image: node:22-bookworm-slim image: node:22-bookworm-slim
steps: steps:
# checkout@v4 without git falls back to a REST API tarball download that
# Forgejo does not serve, failing with a bare 404.
- name: Install git
run: apt-get update && apt-get install -y --no-install-recommends git
- uses: https://data.forgejo.org/actions/checkout@v4 - uses: https://data.forgejo.org/actions/checkout@v4
- name: Install JS dependencies - name: Install JS dependencies