Skip to content

Commit

Permalink
Merge pull request #529 from provenance-io/jarryd/update-node-version
Browse files Browse the repository at this point in the history
feat: Update Node version
  • Loading branch information
jarrydallison authored Oct 15, 2024
2 parents d6f4c3c + 8adb444 commit dc8ac7c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
steps:
- uses: actions/checkout@main

- name: Use Node.js 14.6.0
- name: Use Node.js 18.17.1
uses: actions/setup-node@v1
with:
node-version: '14.6.0'
node-version: '18.17.1'

- name: Install npm packages
run: |
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:14.6.0
FROM node:18.17.1

WORKDIR /usr/src/app
COPY . ./
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-prod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:14.6.0 as build
FROM node:18.17.1 as build
ARG VITE_APP_ENV=test
WORKDIR /usr/src/app
COPY . ./
Expand Down

0 comments on commit dc8ac7c

Please sign in to comment.