bump golang and node runtime versions to be insync with local dev environment.
This commit is contained in:
parent
c7805e9790
commit
9c5bf15016
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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 . .
|
||||
|
|
Loading…
Reference in New Issue