Skip to content

Commit

Permalink
chore: Upgrade to Node 22
Browse files Browse the repository at this point in the history
Removes GitHub variable for NODE_VERSION
  • Loading branch information
felixmokross committed Jan 3, 2025
1 parent 5591e7e commit 28200fa
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ on:
required: true

env:
NODE_VERSION: ${{ vars.NODE_VERSION }}
NODE_VERSION: 22
HUSKY: 0

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
workflow_dispatch:

env:
NODE_VERSION: ${{ vars.NODE_VERSION }}
NODE_VERSION: 22

jobs:
version:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e-clean.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
workflow_dispatch:

env:
NODE_VERSION: ${{ vars.NODE_VERSION }}
NODE_VERSION: 22
HUSKY: 0

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
pull_request:

env:
NODE_VERSION: ${{ vars.NODE_VERSION }}
NODE_VERSION: 22

jobs:
version:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# base node image
FROM node:20-bullseye-slim as base
FROM node:22-bullseye-slim as base

# Install openssl for Prisma
RUN apt-get update && apt-get install -y openssl
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
"vitest": "^1.3.0"
},
"engines": {
"node": "20"
"node": "22"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
Expand Down

0 comments on commit 28200fa

Please # to comment.