From d4c460c3cb5778073bfaacc121c712eb6496116a Mon Sep 17 00:00:00 2001 From: root Date: Sat, 20 Jun 2026 18:46:13 -0400 Subject: [PATCH] fix: bypass SSL verification in Gitea Actions checkout steps --- .gitea/workflows/build-and-deploy.yml | 4 ++++ .gitea/workflows/test.yml | 1 + 2 files changed, 5 insertions(+) diff --git a/.gitea/workflows/build-and-deploy.yml b/.gitea/workflows/build-and-deploy.yml index a142107..37cded9 100644 --- a/.gitea/workflows/build-and-deploy.yml +++ b/.gitea/workflows/build-and-deploy.yml @@ -26,6 +26,8 @@ jobs: docker_image: ${{ steps.image-meta.outputs.full }} steps: - uses: actions/checkout@v4 + env: + GIT_SSL_NO_VERIFY: "true" - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 @@ -74,6 +76,8 @@ jobs: IMAGE_REPOSITORY: ${{ needs.build-image.outputs.image_repository }} steps: - uses: actions/checkout@v4 + env: + GIT_SSL_NO_VERIFY: "true" - name: Check deploy credentials id: check-creds diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml index 6838358..6df8c90 100644 --- a/.gitea/workflows/test.yml +++ b/.gitea/workflows/test.yml @@ -12,6 +12,7 @@ concurrency: env: NODE_VERSION: "20" + GIT_SSL_NO_VERIFY: "true" jobs: api-tests: