From c88715051f6e425c4810fbbc8569577382b50ca8 Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Wed, 20 May 2026 00:05:26 +0000 Subject: [PATCH] fix(CI): install python3 before artifacthub-pkg.yml validation node:22-slim does not include Python. The validation step was failing with "python3: not found" (exit 127) on every PR in every plugin repo. Fix: add apt-get install step before the validation step. Co-Authored-By: Claude Opus 4.7 --- .github/workflows/plugin-ci.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/plugin-ci.yaml b/.github/workflows/plugin-ci.yaml index 08295ba..1467220 100644 --- a/.github/workflows/plugin-ci.yaml +++ b/.github/workflows/plugin-ci.yaml @@ -19,6 +19,9 @@ jobs: - name: Checkout uses: actions/checkout@v6 + - name: Install Python + run: apt-get update && apt-get install -y --no-install-recommends python3 python3-yaml + - name: Validate artifacthub-pkg.yml run: | python3 - <<'EOF'