Merge pull request 'fix(ci): add CA certificate update before checkout' (#120) from fix/ci-self-hosted-actions into main
Some checks failed
Build and Test / build (push) Failing after 3m20s

Reviewed-on: #120
This commit was merged in pull request #120.
This commit is contained in:
2026-02-09 17:20:02 +00:00
2 changed files with 18 additions and 0 deletions

View File

@@ -22,6 +22,12 @@ jobs:
DEBIAN_FRONTEND: noninteractive
steps:
- name: Trust Cloudflare origin CA
run: |
apt-get update -qq
apt-get install -y --no-install-recommends ca-certificates
update-ca-certificates
- name: Free disk space
run: |
echo "=== Disk usage before cleanup ==="

View File

@@ -31,6 +31,12 @@ jobs:
DEBIAN_FRONTEND: noninteractive
steps:
- name: Trust Cloudflare origin CA
run: |
apt-get update -qq
apt-get install -y --no-install-recommends ca-certificates
update-ca-certificates
- name: Free disk space
run: |
echo "=== Disk usage before cleanup ==="
@@ -319,6 +325,12 @@ jobs:
BUILD_TAG: ${{ github.ref_name || inputs.tag }}
steps:
- name: Trust Cloudflare origin CA
run: |
apt-get update -qq
apt-get install -y --no-install-recommends ca-certificates
update-ca-certificates
- name: Download all artifacts
uses: https://git.kindred-systems.com/actions/download-artifact.git@v3
with: