Skip to content

Commit

Permalink
Merge pull request #369 from MetroStar/node-updates
Browse files Browse the repository at this point in the history
Updates for Node 20 as base
  • Loading branch information
jbouder authored Dec 13, 2024
2 parents bccbb7f + 37b5d57 commit cab3156
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/accessibility-testing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Set up Node environment
uses: actions/setup-node@v3
with:
node-version: 18.x
node-version: 20.x

- name: Install project dependencies
run: npm ci
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-and-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Set up Node environment
uses: actions/setup-node@v3
with:
node-version: 18.x
node-version: 20.x

- name: Install dependencies
run: npm ci
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/code-quality.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Set up Node environment
uses: actions/setup-node@v3
with:
node-version: 18.x
node-version: 20.x

- name: Install dependencies
run: npm ci
Expand All @@ -33,7 +33,7 @@ jobs:
- name: Set up Node environment
uses: actions/setup-node@v3
with:
node-version: 18.x
node-version: 20.x

- name: Install dependencies
run: npm ci
Expand All @@ -51,7 +51,7 @@ jobs:
- name: Set up Node environment
uses: actions/setup-node@v3
with:
node-version: 18.x
node-version: 20.x

- name: Install dependencies
run: npm ci
Expand All @@ -69,7 +69,7 @@ jobs:
- name: Set up Node environment
uses: actions/setup-node@v3
with:
node-version: 18.x
node-version: 20.x

- name: Install dependencies
run: npm ci
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e-testing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Set up Node environment
uses: actions/setup-node@v3
with:
node-version: 18.x
node-version: 20.x

- name: Install dependencies
run: npm ci
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Stage 1: Build the React app
FROM node:18.20 as build
FROM node:20.18.1 as build

# Set the working directory in the container
WORKDIR /app
Expand Down

0 comments on commit cab3156

Please sign in to comment.