From d785aeef534ddc44dd199f5319c9af261859370a Mon Sep 17 00:00:00 2001 From: Liam Keegan Date: Mon, 8 Apr 2024 09:56:24 +0200 Subject: [PATCH] Bump deps and add dependabot --- .github/dependabot.yml | 6 ++++++ .github/workflows/ci.yml | 2 +- .pre-commit-config.yaml | 4 ++-- 3 files changed, 9 insertions(+), 3 deletions(-) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..8ac6b8c4 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,6 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "monthly" diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 44f2e29b..26b9c74b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -72,7 +72,7 @@ jobs: run: pip install psychopy==${{ matrix.psychopy-version }} --verbose - run: pip install -e .[tests,docs] --verbose - run: python -m pytest --cov=vstt --cov-report=xml -v -s -x - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 if: failure() with: path: "*.*" diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 41aae65b..a9002a06 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,6 +1,6 @@ repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.5.0 + rev: v4.6.0 hooks: - id: check-yaml - id: end-of-file-fixer @@ -10,7 +10,7 @@ repos: - id: check-toml - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.3.4 + rev: v0.3.5 hooks: - id: ruff types_or: [python, pyi, jupyter]