diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 44a88110..f9139a98 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -18,7 +18,7 @@ jobs: - uses: actions/setup-node@v3 if: steps.node_modules.outputs.cache-hit != 'true' with: - node-version: "18.x" + node-version: "20.x" cache: "npm" registry-url: "https://npm.pkg.github.com" @@ -38,7 +38,7 @@ jobs: - name: Set up node uses: actions/setup-node@v4 with: - node-version: "18.x" + node-version: "20.x" - name: Cache node_modules uses: actions/cache@v4 @@ -59,7 +59,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v3 with: - node-version: "18.x" + node-version: "20.x" - name: Cache node_modules uses: actions/cache@v4 diff --git a/.nvmrc b/.nvmrc index b6fb44b8..c2d64421 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -v18.17.1 \ No newline at end of file +v22.0.0 \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index a7d40304..a95a6a7d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:18-alpine AS runtime +FROM node:22-alpine AS runtime WORKDIR /usr/src/app