From 2e431a81476eee2b3b89da9d51cd6544a8fdc7c2 Mon Sep 17 00:00:00 2001 From: Samuel Aubertin Date: Sun, 11 Jan 2026 21:24:38 +0100 Subject: [PATCH] Install cluster CA for runner --- .forgejo/workflows/ci.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.forgejo/workflows/ci.yaml b/.forgejo/workflows/ci.yaml index 46d27e5..2782fd4 100644 --- a/.forgejo/workflows/ci.yaml +++ b/.forgejo/workflows/ci.yaml @@ -33,6 +33,11 @@ jobs: env: HELLO_SECRET: ${{ secrets.HELLO_SECRET }} + - name: Trust cluster CA + run: | + cp /etc/cluster-ca/root-ca.crt /usr/local/share/ca-certificates/cluster-root-ca.crt + update-ca-certificates + - name: Install required dependencies run: | apt-get update