diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ad76c93..f6e39ad 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: key: ${{ runner.os }}-lint-modules-${{ hashFiles('**/yarn.lock') }} - uses: actions/setup-node@v6 with: - node-version: 18.x + node-version: 24.x - run: yarn install --ignore-scripts - run: yarn run lint @@ -79,7 +79,7 @@ jobs: key: ${{ runner.os }}-deploy-modules-${{ hashFiles('**/yarn.lock') }} - uses: actions/setup-node@v6 with: - node-version: 18.x + node-version: 24.x - run: yarn install --ignore-scripts - run: yarn run build - run: rm .gitignore diff --git a/Dockerfile b/Dockerfile index c56d2e8..6f54916 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ ## Build the website -FROM node:18.12.1 as builder +FROM node:24.11.1 as builder USER node