diff --git a/.github/workflows/backend.yml b/.github/workflows/backend.yml index 54c37737..0f778a91 100644 --- a/.github/workflows/backend.yml +++ b/.github/workflows/backend.yml @@ -39,7 +39,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: 18 + node-version: '22.15.0' - name: Install dependencies run: yarn working-directory: packages/backend diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 71e931cf..007a5caa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: '18' + node-version: '22.15.0' cache: 'yarn' cache-dependency-path: packages/backend/yarn.lock - run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner." @@ -35,7 +35,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: '18' + node-version: '22.15.0' cache: 'yarn' cache-dependency-path: packages/backend/yarn.lock - run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner." @@ -57,7 +57,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: '18' + node-version: '22.15.0' cache: 'yarn' cache-dependency-path: packages/backend/yarn.lock - run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner." @@ -79,7 +79,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: '18' + node-version: '22.15.0' cache: 'yarn' cache-dependency-path: packages/web/yarn.lock - run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner." diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 3928fd3f..ace10654 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -57,7 +57,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v4 with: - node-version: '18' + node-version: '22.15.0' cache: 'yarn' cache-dependency-path: | packages/backend/yarn.lock diff --git a/.node-version b/.node-version index a9d08739..b8ffd707 100644 --- a/.node-version +++ b/.node-version @@ -1 +1 @@ -18.19.0 +22.15.0 diff --git a/.nvmrc b/.nvmrc index a9d08739..b8ffd707 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -18.19.0 +22.15.0 diff --git a/docker/Dockerfile b/docker/Dockerfile index 84789e20..0b2c8188 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,5 +1,5 @@ # syntax=docker/dockerfile:1 -FROM node:18-alpine +FROM node:22.15.0-alpine ENV PORT=3000