From e1732169d90233156a98c948bfa6e3a516cd4c52 Mon Sep 17 00:00:00 2001 From: Juan Calderon-Perez <835733+gaby@users.noreply.github.com> Date: Sun, 29 Dec 2024 23:31:24 -0500 Subject: [PATCH] Add dependabot, remove 16.x from build step --- .github/dependabot.yml | 6 ++++++ .github/workflows/ci.yml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..423c6ce6 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,6 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" \ No newline at end of file diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 837e8687..20e8d9fe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -135,7 +135,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest, macos-latest] - node-version: [16.x, 18.x, 20.x, 22.x, 23.x] + node-version: [18.x, 20.x, 22.x, 23.x] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4