From b2f75681d39b1cc20e3da57759768b764cac6cd7 Mon Sep 17 00:00:00 2001 From: Ashley Williams Date: Tue, 31 Dec 2024 10:21:25 +0000 Subject: [PATCH] chore: update node version in build script --- .github/workflows/deployment_development.yml | 5 +++++ .github/workflows/deployment_production.yml | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/.github/workflows/deployment_development.yml b/.github/workflows/deployment_development.yml index 5bff93e..2391171 100644 --- a/.github/workflows/deployment_development.yml +++ b/.github/workflows/deployment_development.yml @@ -45,6 +45,11 @@ jobs: - name: Checkout uses: actions/checkout@v3 + # Enforce node version + - uses: actions/setup-node@v4 + with: + node-version: 20.17.0 + # Create the first message on slack - name: Update status on slack id: slack diff --git a/.github/workflows/deployment_production.yml b/.github/workflows/deployment_production.yml index 476f393..074d3b1 100644 --- a/.github/workflows/deployment_production.yml +++ b/.github/workflows/deployment_production.yml @@ -45,6 +45,11 @@ jobs: - name: Checkout uses: actions/checkout@v3 + # Enforce node version + - uses: actions/setup-node@v4 + with: + node-version: 20.17.0 + # Create the first message on slack - name: Update status on slack id: slack