From 0e786f2db5c145ca5802b9b45e5c5b057b155263 Mon Sep 17 00:00:00 2001 From: Jevgenijs Blaus Date: Fri, 29 Dec 2023 11:26:42 +0200 Subject: [PATCH] feat: add Nodejs 14 support --- .github/workflows/build-latest.yml | 2 +- .github/workflows/build-release.yml | 2 +- src/inventory.yml | 4 ++++ 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-latest.yml b/.github/workflows/build-latest.yml index f28df12..333e9f0 100644 --- a/.github/workflows/build-latest.yml +++ b/.github/workflows/build-latest.yml @@ -20,7 +20,7 @@ jobs: run: | echo 'matrix={ "os_name": ["alpine"], - "node_version": ["lts", "16", "18", "20"] + "node_version": ["lts", "14", "16", "18", "20"] }' | tr -d '\n' >> $GITHUB_OUTPUT build: diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml index 170955a..c003da9 100644 --- a/.github/workflows/build-release.yml +++ b/.github/workflows/build-release.yml @@ -20,7 +20,7 @@ jobs: run: | echo 'matrix={ "os_name": ["alpine"], - "node_version": ["lts", "16", "18", "20"] + "node_version": ["lts", "14", "16", "18", "20"] }' | tr -d '\n' >> $GITHUB_OUTPUT - name: ⚙️ Get version for image tag diff --git a/src/inventory.yml b/src/inventory.yml index acdddc7..eaf5439 100644 --- a/src/inventory.yml +++ b/src/inventory.yml @@ -20,5 +20,9 @@ all: ansible_connection: local node_version: 16 os_name: alpine + 14-alpine: + ansible_connection: local + node_version: 14 + os_name: alpine ...