diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 974330c2..184a1e61 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@v7 with: - node-version: 20.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@v7 with: - node-version: 20.x + node-version: 24.x - run: yarn install --ignore-scripts - run: yarn run build - run: rm .gitignore diff --git a/Dockerfile b/Dockerfile index 3cec6973..0c6d749d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ ## Build the website -FROM node:18.12.1 as builder +FROM node:24.19.0 as builder USER node