diff --git a/.github/workflows/test-e2e-cron.yml b/.github/workflows/test-e2e-cron.yml index 46b3000..4d29a66 100644 --- a/.github/workflows/test-e2e-cron.yml +++ b/.github/workflows/test-e2e-cron.yml @@ -32,7 +32,7 @@ jobs: timeout-minutes: 1 - uses: actions/setup-node@v3.5.1 with: - node-version: "22" + node-version: "22.5.1" - run: yarn --immutable - run: yarn test:e2e timeout-minutes: 10 diff --git a/.github/workflows/test-e2e.yml b/.github/workflows/test-e2e.yml index ad9a552..91437af 100644 --- a/.github/workflows/test-e2e.yml +++ b/.github/workflows/test-e2e.yml @@ -22,7 +22,7 @@ jobs: timeout-minutes: 1 - uses: actions/setup-node@v3.5.1 with: - node-version: "22" + node-version: "22.5.1" - run: yarn --immutable - run: yarn test:e2e timeout-minutes: 10 diff --git a/.github/workflows/test-integration.yml b/.github/workflows/test-integration.yml index 4f4a77d..d280496 100644 --- a/.github/workflows/test-integration.yml +++ b/.github/workflows/test-integration.yml @@ -13,6 +13,6 @@ jobs: - uses: actions/checkout@v3.3.0 - uses: actions/setup-node@v3.5.1 with: - node-version: 22 + node-version: 22.5.1 - run: yarn --immutable - run: yarn test:integration --verbose diff --git a/Dockerfile b/Dockerfile index 1cd0369..2f23ac3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:22-alpine as builder +FROM node:22.5.1-alpine as builder WORKDIR /usr/src/app @@ -10,7 +10,7 @@ COPY src/ ./src RUN yarn build -FROM node:22-slim +FROM node:22.5.1-slim # metadata ARG VCS_REF=master diff --git a/package.json b/package.json index 04ca933..9eef33a 100644 --- a/package.json +++ b/package.json @@ -52,7 +52,7 @@ "typescript": "^5.4.5" }, "engines": { - "node": "^22" + "node": "^22 && !22.5.0" }, "packageManager": "yarn@4.3.0" }