fix: use gzipped node tarball to avoid xz-utils dependency
Homelab Main / validate (push) Successful in 23s Details
Homelab Main / deploy (push) Failing after 12s Details

This commit is contained in:
jv 2026-09-18 14:36:39 -05:00
parent 5fbb7f9378
commit 8bbaa456d3
1 changed files with 4 additions and 4 deletions

View File

@ -16,8 +16,8 @@ jobs:
set -e set -e
# Install PyYAML via apt (avoiding PEP 668) # Install PyYAML via apt (avoiding PEP 668)
apt-get update && apt-get install -y --no-install-recommends python3-yaml apt-get update && apt-get install -y --no-install-recommends python3-yaml
# Install Node 18 via binary # Install Node 18 via binary (using gzipped tarball to avoid xz dependency)
curl -fsSL https://nodejs.org/dist/v18.19.0/node-v18.19.0-linux-x64.tar.xz | tar -xJ -C /usr/local --strip-components=1 curl -fsSL https://nodejs.org/dist/v18.19.0/node-v18.19.0-linux-x64.tar.gz | tar -xz -C /usr/local --strip-components=1
- name: Check out repository - name: Check out repository
run: | run: |
set -e set -e
@ -39,8 +39,8 @@ jobs:
set -e set -e
# Install PyYAML via apt (avoiding PEP 668) # Install PyYAML via apt (avoiding PEP 668)
apt-get update && apt-get install -y --no-install-recommends python3-yaml apt-get update && apt-get install -y --no-install-recommends python3-yaml
# Install Node 18 via binary # Install Node 18 via binary (using gzipped tarball to avoid xz dependency)
curl -fsSL https://nodejs.org/dist/v18.19.0/node-v18.19.0-linux-x64.tar.xz | tar -xJ -C /usr/local --strip-components=1 curl -fsSL https://nodejs.org/dist/v18.19.0/node-v18.19.0-linux-x64.tar.gz | tar -xz -C /usr/local --strip-components=1
- name: Check out repository - name: Check out repository
run: | run: |
set -e set -e