From 56c048a8cea6151f37ba745607122d3f34c552a1 Mon Sep 17 00:00:00 2001
From: bergi <bergi@axolotlfarm.org>
Date: Mon, 17 Jun 2024 22:41:54 +0200
Subject: [PATCH] chore: added dependabot config, update CI config

---
 .github/dependabot.yaml     | 11 +++++++++++
 .github/workflows/test.yaml |  6 +++---
 2 files changed, 14 insertions(+), 3 deletions(-)
 create mode 100644 .github/dependabot.yaml

diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml
new file mode 100644
index 0000000..7789a02
--- /dev/null
+++ b/.github/dependabot.yaml
@@ -0,0 +1,11 @@
+version: 2
+updates:
+  - package-ecosystem: github-actions
+    directory: /
+    schedule:
+      interval: daily
+  - package-ecosystem: npm
+    directory: /
+    schedule:
+      interval: daily
+    versioning-strategy: increase-if-necessary
diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml
index 06d8634..a4775d0 100644
--- a/.github/workflows/test.yaml
+++ b/.github/workflows/test.yaml
@@ -10,12 +10,12 @@ jobs:
         node:
           - '18'
           - '20'
-          - '21'
+          - '22'
     steps:
       - uses: actions/checkout@v4
-      - uses: actions/setup-node@v3
+      - uses: actions/setup-node@v4
         with:
           node-version: ${{ matrix.node }}
       - run: npm install
       - run: npm test
-      - uses: codecov/codecov-action@v3
+      - uses: codecov/codecov-action@v4