From 06112330b63e857383d6434f61d61480e58b8c88 Mon Sep 17 00:00:00 2001 From: Gabriel Sancho Date: Fri, 27 Mar 2026 15:35:32 -0300 Subject: [PATCH] fix(ci): add missing 'with' block for checkout step in backend and frontend jobs --- .gitea/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 3b1d320..276dcd4 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -13,6 +13,8 @@ jobs: working-directory: backend steps: - uses: actions/checkout@v4 + with: + github-server-url: http://gitea.lab - name: Set up JDK 21 uses: actions/setup-java@v4 @@ -42,6 +44,8 @@ jobs: working-directory: frontend steps: - uses: actions/checkout@v4 + with: + github-server-url: http://gitea.lab - name: Set up Node 20 uses: actions/setup-node@v4