diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 370031a..346585c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,13 +10,11 @@ jobs: fail-fast: false matrix: node-version: + - 20 - 18 - - 16 - - 14 - - 12 steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v2 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - run: npm install diff --git a/package.json b/package.json index 5a587a9..e8e7626 100644 --- a/package.json +++ b/package.json @@ -38,14 +38,14 @@ "space": 4 }, "dependencies": { - "got": "^11.8.2" + "got": "^14.0.0" }, "devDependencies": { - "ava": "^3.15.0", - "sinon": "^11.1.2", - "xo": "^0.54.2" + "ava": "^6.0.1", + "sinon": "^17.0.1", + "xo": "^0.56.0" }, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "node": ">=18" } }