Skip to content

Commit

Permalink
Merge pull request #472 from 18F/lts
Browse files Browse the repository at this point in the history
Update to Node 18 (new LTS)
  • Loading branch information
mgwalker authored Nov 15, 2022
2 parents 3e90b59 + 2e1a33a commit f7262f5
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/on_pull_request_inclusion_bot_sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

- uses: actions/setup-node@2fddd8803e2f5c9604345a0b591c3020ee971a93
with:
node-version: 16
node-version: 18
- run: npm ci

- run: npx -y prettier -w InclusionBot.md
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/on_push_main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
name: publish release
needs: [deploy]
runs-on: ubuntu-latest
container: node:16
container: node:18
permissions:
contents: write
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
build:
name: build
runs-on: ubuntu-latest
container: node:16
container: node:18
steps:
- uses: actions/checkout@af513c7a016048ae468971c52ed77d9562c7c819
- uses: actions/cache@d1255ad9362389eac595a9ae406b8e8cb3331f16
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/reusable_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
lint:
name: lint
runs-on: ubuntu-latest
container: node:16
container: node:18
steps:
- uses: actions/checkout@af513c7a016048ae468971c52ed77d9562c7c819
- uses: actions/cache@d1255ad9362389eac595a9ae406b8e8cb3331f16
Expand All @@ -20,7 +20,7 @@ jobs:
format:
name: verify formatting
runs-on: ubuntu-latest
container: node:16
container: node:18
steps:
- uses: actions/checkout@af513c7a016048ae468971c52ed77d9562c7c819
- uses: actions/cache@d1255ad9362389eac595a9ae406b8e8cb3331f16
Expand All @@ -33,7 +33,7 @@ jobs:
test:
name: unit tests
runs-on: ubuntu-latest
container: node:16
container: node:18
steps:
- uses: actions/checkout@af513c7a016048ae468971c52ed77d9562c7c819
- uses: actions/cache@d1255ad9362389eac595a9ae406b8e8cb3331f16
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:16
FROM node:18

RUN mkdir /app
WORKDIR /app
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"plural": "^1.1.0"
},
"engines": {
"node": "^16.10.0"
"node": "^18.10.0"
},
"devDependencies": {
"eslint": "^8.7.0",
Expand Down

0 comments on commit f7262f5

Please sign in to comment.