diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 49869b0b8..8923d23fa 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -13,7 +13,7 @@ jobs: - name: Install NodeJS uses: actions/setup-node@v4 with: - node-version: 18.x + node-version: 22.x - name: Install dependencies run: npm ci --omit=optional - name: Code linting diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index b783950cf..be25de0a8 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -14,7 +14,7 @@ jobs: - uses: actions/setup-node@v4 with: - node-version: 18 + node-version: 22 registry-url: "https://registry.npmjs.org" - name: Configure Git diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0cb46026d..58e0cc032 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -25,7 +25,7 @@ jobs: strategy: matrix: runner: [ ubuntu-22.04 ] - node-version: [ 18.x, 20.x ] + node-version: [ 18.x, 20.x, 22.x ] steps: - name: Code checkout uses: actions/checkout@v4 @@ -49,7 +49,7 @@ jobs: needs: smoke-test strategy: matrix: - node-version: [ 18.x, 20.x ] + node-version: [ 18.x, 20.x, 22.x ] container-runtime: [ docker, podman ] include: - container-runtime: docker @@ -78,7 +78,7 @@ jobs: needs: [ test-testcontainers, list-modules ] strategy: matrix: - node-version: [ 18.x, 20.x ] + node-version: [ 18.x, 20.x, 22.x ] container-runtime: [ docker, podman ] include: - container-runtime: docker