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
|
- name: test
|
||||||
uses: actions/setup-node@v1
|
uses: actions/setup-node@v1
|
||||||
with:
|
with:
|
||||||
node-version: 18.x
|
node-version: 20.x
|
||||||
- name: Test Frontend
|
- name: Test Frontend
|
||||||
run: |
|
run: |
|
||||||
make test-frontend-coverage
|
make test-frontend-coverage
|
||||||
|
|
|
@ -18,10 +18,10 @@ jobs:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- uses: actions/setup-node@v3
|
- uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
node-version: 18.x
|
node-version: 20.x
|
||||||
- uses: actions/setup-go@v3
|
- uses: actions/setup-go@v3
|
||||||
with:
|
with:
|
||||||
go-version: '1.18.3'
|
go-version: '1.21.1'
|
||||||
- run: go version
|
- run: go version
|
||||||
- run: |
|
- run: |
|
||||||
make dep-frontend
|
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.
|
# 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
|
ARG FASTEN_ENV=sandbox
|
||||||
WORKDIR /usr/src/fastenhealth/frontend
|
WORKDIR /usr/src/fastenhealth/frontend
|
||||||
COPY frontend/package.json frontend/yarn.lock ./
|
COPY frontend/package.json frontend/yarn.lock ./
|
||||||
|
@ -22,7 +22,7 @@ RUN --mount=type=cache,target=/tmp/lock,sharing=locked \
|
||||||
#########################################################################################################
|
#########################################################################################################
|
||||||
# Backend Build
|
# Backend Build
|
||||||
#########################################################################################################
|
#########################################################################################################
|
||||||
FROM golang:1.18 as backend-build
|
FROM golang:1.21 as backend-build
|
||||||
|
|
||||||
WORKDIR /go/src/github.com/fastenhealth/fasten-onprem
|
WORKDIR /go/src/github.com/fastenhealth/fasten-onprem
|
||||||
COPY . .
|
COPY . .
|
||||||
|
|
Loading…
Reference in New Issue