Skip to content

Commit

Permalink
Merge pull request #559 from 18F/dependency-updates
Browse files Browse the repository at this point in the history
Dependency updates and Node.js LTS update
  • Loading branch information
mgwalker authored Nov 20, 2024
2 parents 56aa604 + 635447b commit a62f092
Show file tree
Hide file tree
Showing 21 changed files with 1,282 additions and 1,447 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 @@ -32,7 +32,7 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: 20
node-version: 22
- 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:20
container: node:22
permissions:
contents: write
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/on_schedule_monthly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
node-version: 22

- run: node lts.js
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:20
container: node:22
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v3
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:20
container: node:22
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v3
Expand All @@ -20,7 +20,7 @@ jobs:
format:
name: verify formatting
runs-on: ubuntu-latest
container: node:20
container: node:22
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v3
Expand All @@ -33,7 +33,7 @@ jobs:
test:
name: unit tests
runs-on: ubuntu-latest
container: node:20
container: node:22
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v3
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:20
FROM node:22

RUN mkdir /app
WORKDIR /app
Expand Down
Loading

0 comments on commit a62f092

Please sign in to comment.