fix(ci): add CA certificate update before checkout #120

Merged
forbes merged 2 commits from fix/ci-self-hosted-actions into main 2026-02-09 17:20:03 +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: