From b91d625604d402535481c86928de288e46a24fc8 Mon Sep 17 00:00:00 2001 From: Shane Smith Date: Mon, 12 Feb 2024 08:22:57 -0600 Subject: [PATCH] fix: fixing path on workflow, resetting Dockerfiles to use 16.20.2 --- .github/workflows/release-deploy.yml | 2 +- docs/Dockerfile | 2 +- packages/sage-assets/Dockerfile | 2 +- packages/sage-react/Dockerfile | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release-deploy.yml b/.github/workflows/release-deploy.yml index 17f424beff..4dd24acc4c 100644 --- a/.github/workflows/release-deploy.yml +++ b/.github/workflows/release-deploy.yml @@ -15,7 +15,7 @@ concurrency: jobs: lint-test-build: - uses: ./lint-test-build.yml + uses: ./.github/workflows/lint-test-build.yml setup: needs: [lint-test-build] diff --git a/docs/Dockerfile b/docs/Dockerfile index 25f1e61b88..e4b9b6ae20 100644 --- a/docs/Dockerfile +++ b/docs/Dockerfile @@ -4,7 +4,7 @@ ARG RAILS_ENV="production" ARG NONROOT_UID="1000" ARG NONROOT_GID="1000" ARG BUNDLER_VERSION="2.3.14" -ARG NODE_VERSION="18.17.1" +ARG NODE_VERSION="16.20.2" ARG YARN_VERSION="1.22.18" ARG ARCH="x64" ARG GITHUB_TOKEN diff --git a/packages/sage-assets/Dockerfile b/packages/sage-assets/Dockerfile index 48e201b99b..0af8061a54 100644 --- a/packages/sage-assets/Dockerfile +++ b/packages/sage-assets/Dockerfile @@ -3,7 +3,7 @@ FROM ruby:3.1.2-alpine ARG RAILS_ENV="production" ARG NONROOT_UID="1000" ARG NONROOT_GID="1000" -ARG NODE_VERSION="18.17.1" +ARG NODE_VERSION="16.20.2" ARG YARN_VERSION="1.22.18" ARG ARCH="x64" diff --git a/packages/sage-react/Dockerfile b/packages/sage-react/Dockerfile index 37a7fc9461..0d05865ed4 100644 --- a/packages/sage-react/Dockerfile +++ b/packages/sage-react/Dockerfile @@ -2,7 +2,7 @@ FROM alpine:3.17.0 ARG NONROOT_UID="1000" ARG NONROOT_GID="1000" -ARG NODE_VERSION="18.17.1" +ARG NODE_VERSION="16.20.2" ARG YARN_VERSION="1.22.18" ARG ARCH="x64" ARG GITHUB_TOKEN