fix: use nodesource for nodejs to avoid debian repo 404s
Homelab Main / validate (push) Failing after 21s Details
Homelab Main / deploy (push) Has been skipped Details

This commit is contained in:
jv 2026-09-18 09:36:03 -05:00
parent 627d0d13b9
commit 556e5002f1
1 changed files with 8 additions and 2 deletions

View File

@ -14,7 +14,10 @@ jobs:
- name: Install Node.js and Python deps - name: Install Node.js and Python deps
run: | run: |
set -e set -e
apt-get update && apt-get install -y nodejs npm python3-yaml apt-get update
apt-get install -y --fix-missing python3-yaml
curl -fsSL https://deb.nodesource.com/setup_18.x | bash -
apt-get install -y nodejs
- name: Check out repository - name: Check out repository
run: | run: |
set -e set -e
@ -34,7 +37,10 @@ jobs:
- name: Install Node.js and Python deps - name: Install Node.js and Python deps
run: | run: |
set -e set -e
apt-get update && apt-get install -y nodejs npm python3-yaml apt-get update
apt-get install -y --fix-missing python3-yaml
curl -fsSL https://deb.nodesource.com/setup_18.x | bash -
apt-get install -y nodejs
- name: Check out repository - name: Check out repository
run: | run: |
set -e set -e