Remove Node.js installation step from CI workflow
All checks were successful
CI / lint-and-test (pull_request) Successful in 1m20s
CI / ansible-validation (pull_request) Successful in 5m54s
CI / secret-scanning (pull_request) Successful in 1m39s
CI / dependency-scan (pull_request) Successful in 2m53s
CI / sast-scan (pull_request) Successful in 5m46s
CI / license-check (pull_request) Successful in 1m15s
CI / vault-check (pull_request) Successful in 5m29s
CI / playbook-test (pull_request) Successful in 5m35s
CI / container-scan (pull_request) Successful in 4m49s
CI / sonar-analysis (pull_request) Successful in 1m22s
CI / workflow-summary (pull_request) Successful in 1m11s

- Eliminate the installation of Node.js for the checkout action in the CI workflow to streamline the process and reduce unnecessary dependencies.
This commit is contained in:
ilia 2025-12-28 21:42:20 -05:00
parent 9ea1090d02
commit c84b0b8260

View File

@ -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