diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index 9f68791..1121f89 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -6,15 +6,15 @@ jobs: linter: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - name: Use Node.js 14.x - uses: actions/setup-node@v2 + - uses: actions/checkout@v4 + - name: Use Node.js 18 + uses: actions/setup-node@v4 with: - node-version: '14.x' + node-version: 18 - name: Install Dependencies run: npm install - name: Lint run: | npm run eslint env: - CI: true \ No newline at end of file + CI: true diff --git a/.github/workflows/tester.yml b/.github/workflows/tester.yml index 49f2367..9fde5c3 100644 --- a/.github/workflows/tester.yml +++ b/.github/workflows/tester.yml @@ -8,12 +8,12 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest, macos-latest] - node-version: ['14.x', '16.x', '18.x'] + node-version: [18, 20] fail-fast: false steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v2 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - name: Install Dependencies @@ -27,11 +27,11 @@ jobs: strategy: matrix: os: [ubuntu-latest] - node-version: ['14.x'] + node-version: [18] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v2 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - name: Install Dependencies @@ -41,6 +41,6 @@ jobs: env: CI: true - name: Coveralls - uses: coverallsapp/github-action@master + uses: coverallsapp/github-action@v2 with: - github-token: ${{ secrets.github_token }} \ No newline at end of file + github-token: ${{ secrets.github_token }} diff --git a/package.json b/package.json index 55b5e98..6a3b264 100644 --- a/package.json +++ b/package.json @@ -31,6 +31,6 @@ "mocha": "^10.0.0" }, "engines": { - "node": ">=14" + "node": ">=18" } }