Skip to content

Commit

Permalink
Update nodejs to 20.x lts
Browse files Browse the repository at this point in the history
  • Loading branch information
ggodlewski committed Nov 26, 2023
1 parent 4be5671 commit 2895bd9
Show file tree
Hide file tree
Showing 10 changed files with 102 additions and 213 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/DevelopServerDeploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
- run: sudo apt-get update
- run: sudo apt-get install -y libkrb5-dev

- name: Use Node.js 18.x
- name: Use Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: 18
node-version: 20
cache: npm

- name: Install node_modules
Expand All @@ -36,10 +36,10 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Use Node.js 18.x
- name: Use Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: 18
node-version: 20
cache: npm

- name: Build action runner
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ProdServerDeploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
- run: sudo apt-get update
- run: sudo apt-get install -y libkrb5-dev

- name: Use Node.js 18.x
- name: Use Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: 18
node-version: 20
cache: npm

- name: Install node_modules
Expand All @@ -37,10 +37,10 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Use Node.js 18.x
- name: Use Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: 18
node-version: 20
cache: npm

- name: Build action runner
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
- run: sudo apt-get update
- run: sudo apt-get install -y libkrb5-dev

- name: Use Node.js 18.x
- name: Use Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: 18
node-version: 20
cache: npm

- name: Install node_modules
Expand All @@ -35,10 +35,10 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Use Node.js 18.x
- name: Use Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: 18
node-version: 20
cache: npm

- name: Build hugo docs
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18.12.1
20.10.0
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18-alpine
FROM node:20-alpine

RUN apk add --no-cache bash openssh-keygen git-lfs openssh-client
WORKDIR /usr/src/app
Expand Down
Loading

0 comments on commit 2895bd9

Please sign in to comment.