Skip to content

Commit

Permalink
upgrade node
Browse files Browse the repository at this point in the history
Signed-off-by: Liam Stanley <[email protected]>
  • Loading branch information
lrstanley committed Apr 10, 2022
1 parent 5c37ff7 commit 25dcc05
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ jobs:
with:
has-ghcr: true
upload-artifacts: true
node-version: "16.13.0"
node-version: "17.9.0"
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
uses: lrstanley/.github/.github/workflows/lang-go-test-matrix.yml@master
with:
go-version: latest
node-version: "16.13.0"
node-version: "17.9.0"
go-lint:
uses: lrstanley/.github/.github/workflows/lang-go-lint.yml@master
secrets:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# build-node image
FROM node:16 as build-node
FROM node:17 as build-node

# for cache reasons, copy these separately.
COPY public/package.json /build/public/package.json
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ frontend-watch: ## Use this to spin up vite, and proxy calls to the backend.
debug: fetch-go fetch-node clean ## Runs the application in debug mode (with generate-dev.)
go run *.go -d --http.limit 200000 --http.proxy

prepare: fetch-go fetch-node clean generate-node ## Runs preparation steps for build.
prepare: fetch-go fetch-node clean generate-node ## Prepare the dependencies needed for a build.
go generate ./...
@echo

Expand Down

0 comments on commit 25dcc05

Please sign in to comment.