From 5937461df163bbfced679688d2f39557922cc993 Mon Sep 17 00:00:00 2001 From: David Nugent Date: Sat, 11 May 2024 17:14:42 +1000 Subject: [PATCH] Add dependabot config and update poetry version --- .github/dependabot.yaml | 11 +++++++++++ .github/workflows/poetry-test-and-build.yml | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 .github/dependabot.yaml diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml new file mode 100644 index 0000000..9f3fc29 --- /dev/null +++ b/.github/dependabot.yaml @@ -0,0 +1,11 @@ +version: 2 +updates: + - package-ecosystem: "poetry" + directory: "/" + schedule: + interval: "weekly" + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" diff --git a/.github/workflows/poetry-test-and-build.yml b/.github/workflows/poetry-test-and-build.yml index 31d35fc..bfbe1e3 100644 --- a/.github/workflows/poetry-test-and-build.yml +++ b/.github/workflows/poetry-test-and-build.yml @@ -15,7 +15,7 @@ jobs: strategy: matrix: python-version: ["3.12", "3.11", "3.10"] - poetry-version: ["1.6.1", "1.7.1"] + poetry-version: ["1.7.1", "1.8.3"] steps: - name: checkout