From 77bbd1f0dc4fb225099ab6ece9be4b7a54f73c73 Mon Sep 17 00:00:00 2001 From: meisnate12 Date: Thu, 25 Apr 2024 02:15:23 -0400 Subject: [PATCH] add dependabot --- .github/dependabot.yml | 14 ++++++++++++++ .github/workflows/tests.yml | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..3db7b2b --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,14 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates + +version: 2 +updates: + - package-ecosystem: github-actions + directory: '/' + schedule: + interval: daily + target-branch: "master" + assignees: + - "meisnate12" diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index f5c70dc..02feebc 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -43,7 +43,7 @@ jobs: run: coverage run -m pytest -s --cov tmdbapis --cov-report xml tests/test* - name: Codecov coverage reports - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: token: ${{ secrets.CODECOV_TOKEN }} files: coverage.xml