bump golang and node runtime versions to be insync with local dev environment.

This commit is contained in:
Jason Kulatunga 2023-10-03 14:46:49 -07:00
parent c7805e9790
commit 9c5bf15016
No known key found for this signature in database
3 changed files with 5 additions and 5 deletions

View File

@ -21,7 +21,7 @@ jobs:
- name: test
uses: actions/setup-node@v1
with:
node-version: 18.x
node-version: 20.x
- name: Test Frontend
run: |
make test-frontend-coverage

View File

@ -18,10 +18,10 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18.x
node-version: 20.x
- uses: actions/setup-go@v3
with:
go-version: '1.18.3'
go-version: '1.21.1'
- run: go version
- run: |
make dep-frontend

View File

@ -9,7 +9,7 @@
#
# instead, we use https://depot.dev/ to do our multi-arch builds on native ARM and AMD nodes.
FROM node:18 as frontend-build
FROM node:20 as frontend-build
ARG FASTEN_ENV=sandbox
WORKDIR /usr/src/fastenhealth/frontend
COPY frontend/package.json frontend/yarn.lock ./
@ -22,7 +22,7 @@ RUN --mount=type=cache,target=/tmp/lock,sharing=locked \
#########################################################################################################
# Backend Build
#########################################################################################################
FROM golang:1.18 as backend-build
FROM golang:1.21 as backend-build
WORKDIR /go/src/github.com/fastenhealth/fasten-onprem
COPY . .