From c84b0b8260ab184dcc9006c575d73197fc5be453 Mon Sep 17 00:00:00 2001 From: ilia Date: Sun, 28 Dec 2025 21:42:20 -0500 Subject: [PATCH] Remove Node.js installation step from CI workflow - Eliminate the installation of Node.js for the checkout action in the CI workflow to streamline the process and reduce unnecessary dependencies. --- .gitea/workflows/ci.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 09010df..b113191 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -280,10 +280,6 @@ jobs: SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }} SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} steps: - - name: Install Node.js for checkout action - run: | - apk add --no-cache nodejs npm curl - - name: Check out code uses: actions/checkout@v4