46 - Install ca-certificates in the build job
All checks were successful
CI / ci (push) Successful in 32s
CI / build (push) Successful in 1m7s
CI / ci (pull_request) Successful in 37s
CI / build (pull_request) Successful in 55s

This commit is contained in:
myrmidex 2026-08-16 11:09:47 +02:00
parent bb0b94f8fe
commit b38a8744bb

View file

@ -116,9 +116,10 @@ jobs:
steps: steps:
# checkout@v4 without git falls back to a REST API tarball download that # checkout@v4 without git falls back to a REST API tarball download that
# Forgejo does not serve, failing with a bare 404. # Forgejo does not serve (404); without ca-certificates git cannot verify
# the forge's TLS certificate ("CAfile: none").
- name: Install git - name: Install git
run: apt-get update && apt-get install -y --no-install-recommends git run: apt-get update && apt-get install -y --no-install-recommends git ca-certificates
- uses: https://data.forgejo.org/actions/checkout@v4 - uses: https://data.forgejo.org/actions/checkout@v4