From aabb5a82fe14e2d098986c687b0ce337f059d747 Mon Sep 17 00:00:00 2001 From: Michael Schiemer Date: Fri, 31 Oct 2025 21:15:01 +0100 Subject: [PATCH] fix: Update repository URL in all workflow files - Fix checkout URLs in update-production-secrets.yml - Fix checkout URLs in security-scan.yml - Fix checkout URLs in test-registry.yml - Change from repository.michaelschiemer.de:5000 to git.michaelschiemer.de --- .gitea/workflows/security-scan.yml | 2 +- .gitea/workflows/test-registry.yml | 2 +- .gitea/workflows/update-production-secrets.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/security-scan.yml b/.gitea/workflows/security-scan.yml index 92053be7..c6d66cdb 100644 --- a/.gitea/workflows/security-scan.yml +++ b/.gitea/workflows/security-scan.yml @@ -27,7 +27,7 @@ jobs: # Use CI token if available, otherwise try public access if [ -n "${{ secrets.CI_TOKEN }}" ]; then git clone --depth 1 --branch "$REF_NAME" \ - "https://${{ secrets.CI_TOKEN }}@repository.michaelschiemer.de:5000/${REPO}.git" \ + "https://${{ secrets.CI_TOKEN }}@git.michaelschiemer.de/${REPO}.git" \ /workspace/repo else # Try public HTTPS (works if repository is public) diff --git a/.gitea/workflows/test-registry.yml b/.gitea/workflows/test-registry.yml index dddb98e4..67af1ffd 100644 --- a/.gitea/workflows/test-registry.yml +++ b/.gitea/workflows/test-registry.yml @@ -35,7 +35,7 @@ jobs: if [ -n "${{ secrets.CI_TOKEN }}" ]; then git clone --depth 1 --branch "$REF_NAME" \ - "https://${{ secrets.CI_TOKEN }}@repository.michaelschiemer.de:5000/${REPO}.git" \ + "https://${{ secrets.CI_TOKEN }}@git.michaelschiemer.de/${REPO}.git" \ /workspace/repo else git clone --depth 1 --branch "$REF_NAME" \ diff --git a/.gitea/workflows/update-production-secrets.yml b/.gitea/workflows/update-production-secrets.yml index 9277898b..93fe0584 100644 --- a/.gitea/workflows/update-production-secrets.yml +++ b/.gitea/workflows/update-production-secrets.yml @@ -30,7 +30,7 @@ jobs: if [ -n "${{ secrets.CI_TOKEN }}" ]; then git clone --depth 1 --branch "$REF_NAME" \ - "https://${{ secrets.CI_TOKEN }}@repository.michaelschiemer.de:5000/${REPO}.git" \ + "https://${{ secrets.CI_TOKEN }}@git.michaelschiemer.de/${REPO}.git" \ /workspace/repo else git clone --depth 1 --branch "$REF_NAME" \