fix: add --no-install-recommends to prevent deprecated package 404s
Homelab Main / validate (push) Failing after 5s Details
Homelab Main / deploy (push) Has been skipped Details

This commit is contained in:
jv 2026-09-18 09:41:14 -05:00
parent 556e5002f1
commit 7f77c7d208
1 changed files with 4 additions and 4 deletions

View File

@ -15,9 +15,9 @@ jobs:
run: | run: |
set -e set -e
apt-get update apt-get update
apt-get install -y --fix-missing python3-yaml apt-get install -y --no-install-recommends curl python3-yaml
curl -fsSL https://deb.nodesource.com/setup_18.x | bash - curl -fsSL https://deb.nodesource.com/setup_18.x | bash -
apt-get install -y nodejs apt-get install -y --no-install-recommends nodejs
- name: Check out repository - name: Check out repository
run: | run: |
set -e set -e
@ -38,9 +38,9 @@ jobs:
run: | run: |
set -e set -e
apt-get update apt-get update
apt-get install -y --fix-missing python3-yaml apt-get install -y --no-install-recommends curl python3-yaml
curl -fsSL https://deb.nodesource.com/setup_18.x | bash - curl -fsSL https://deb.nodesource.com/setup_18.x | bash -
apt-get install -y nodejs apt-get install -y --no-install-recommends nodejs
- name: Check out repository - name: Check out repository
run: | run: |
set -e set -e