From 0427e47ba85bbc1608678aba131d1ceef0c0fb08 Mon Sep 17 00:00:00 2001 From: laruevin Date: Wed, 11 Feb 2026 15:16:29 +0700 Subject: [PATCH] fix: revert checkout action to standard syntax, remove setup-node Node.js is already installed on the host runner. actions/checkout@v4 auto-resolves from GitHub. Co-Authored-By: Claude Opus 4.6 --- .gitea/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 31b1a17..7d87af5 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: lint: runs-on: ubuntu-latest steps: - - uses: http://127.0.0.1:3300/actions/checkout@v4 + - uses: actions/checkout@v4 - run: npm ci - run: npm run lint @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest needs: lint steps: - - uses: http://127.0.0.1:3300/actions/checkout@v4 + - uses: actions/checkout@v4 - run: npm ci - run: npm run build @@ -27,7 +27,7 @@ jobs: needs: build if: gitea.ref == 'refs/heads/main' steps: - - uses: http://127.0.0.1:3300/actions/checkout@v4 + - uses: actions/checkout@v4 - run: npm ci - run: npm run build - name: Deploy to production