From db9d0aa6972c7308a18af4ba83c9562afd555ea7 Mon Sep 17 00:00:00 2001 From: RJ Date: Wed, 19 Nov 2025 16:06:53 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=AA=20Node=20latest=20container=20does?= =?UTF-8?q?n't=20use=20the=20GITEA=5FINSTANCE=5FURL=20like=20ubuntu-latest?= =?UTF-8?q?=20=F0=9F=A4=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/main.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitea/workflows/main.yml b/.gitea/workflows/main.yml index adbb975..98844e1 100644 --- a/.gitea/workflows/main.yml +++ b/.gitea/workflows/main.yml @@ -37,10 +37,14 @@ jobs: lint: name: ๐Ÿ” Code Quality Checks runs-on: node-latest + env: + ACTIONS_RUNTIME_URL: http://192.168.1.53:3000 # Seteazฤƒ la nivel de job steps: - name: ๐Ÿ”Ž Checkout code uses: actions/checkout@v4 + with: + github-server-url: ${{ env.ACTIONS_RUNTIME_URL }} - name: ๐Ÿ“ฅ Install dependencies run: npm ci