Skip to content

Commit 4400f34

Browse files
Set minimum node version to 20
1 parent 4e3651b commit 4400f34

File tree

9 files changed

+35
-27
lines changed

9 files changed

+35
-27
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// Features to add to the dev container. More info: https://containers.dev/features.
99
"features": {
1010
"ghcr.io/devcontainers/features/node:1": {
11-
"version": "18"
11+
"version": "22"
1212
},
1313
"ghcr.io/devcontainers/features/docker-outside-of-docker:1": {}
1414
},

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
fail-fast: true
8484
matrix:
8585
runner: [ubuntu-22.04]
86-
node-version: [18.x, 20.x, 22.x]
86+
node-version: [20.x, 22.x]
8787
runs-on: ${{ matrix.runner }}
8888
steps:
8989
- name: Code checkout
@@ -116,7 +116,7 @@ jobs:
116116
fail-fast: false
117117
matrix:
118118
module: ${{ fromJSON(needs.detect-modules.outputs.modules) }}
119-
node-version: [18.x, 20.x, 22.x]
119+
node-version: [20.x, 22.x]
120120
uses: ./.github/workflows/test-template.yml
121121
with:
122122
runner: ubuntu-22.04
@@ -136,7 +136,7 @@ jobs:
136136
fail-fast: false
137137
matrix:
138138
module: ${{ fromJSON(needs.detect-modules.outputs.modules) }}
139-
node-version: [18.x, 20.x, 22.x]
139+
node-version: [20.x, 22.x]
140140
uses: ./.github/workflows/test-template.yml
141141
with:
142142
runner: ubuntu-22.04

.github/workflows/windows-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ jobs:
3131
repository: ${{ github.event.client_payload.pull_request.head.repo.full_name }}
3232
ref: ${{ github.event.client_payload.pull_request.head.ref }}
3333

34-
- name: Install NodeJS 18.x
34+
- name: Install NodeJS 22.x
3535
uses: actions/setup-node@v4
3636
with:
37-
node-version: 18.x
37+
node-version: 22.x
3838

3939
- name: Install dependencies
4040
run: npm ci --omit=optional

LICENSE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2018 - 2023 Cristian Greco
3+
Copyright (c) 2018 - 2025 Cristian Greco
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal
@@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1818
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1919
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21-
SOFTWARE.
21+
SOFTWARE.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ See [LICENSE](https://github.com/testcontainers/testcontainers-node/blob/main/LI
1616

1717
## Copyright
1818

19-
Copyright (c) 2018 - 2023 Cristian Greco and other authors.
19+
Copyright (c) 2015 - 2023 Cristian Greco and other authors.
2020

2121
## Contributing
2222

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ See [LICENSE](https://raw.githubusercontent.com/testcontainers/testcontainers-no
2222

2323
## Copyright
2424

25-
Copyright (c) 2018 - 2023 Cristian Greco and other authors.
25+
Copyright (c) 2018 - 2025 Cristian Greco and other authors.
2626

2727
See [contributors](https://github.com/testcontainers/testcontainers-node/graphs/contributors/) for contributors.
2828

package-lock.json

Lines changed: 23 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,6 @@
4444
]
4545
},
4646
"engines": {
47-
"node": ">= 18"
47+
"node": ">= 20"
4848
}
4949
}

packages/modules/arangodb/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"build": "tsc --project tsconfig.build.json"
3030
},
3131
"devDependencies": {
32-
"arangojs": "^9.3.0"
32+
"arangojs": "^10.1.1"
3333
},
3434
"dependencies": {
3535
"testcontainers": "^10.21.0"

0 commit comments

Comments
 (0)