diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index 0c7b61b..0000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,54 +0,0 @@ -# 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: pip - directory: "/" - schedule: - interval: weekly - timezone: "Etc/UTC" - time: "10:00" - reviewers: - - "edgarrmondragon" - versioning-strategy: increase-if-necessary - commit-message: - prefix: "feat(deps): " - prefix-development: "chore(deps-dev): " - groups: - development-dependencies: - dependency-type: development - runtime-dependencies: - dependency-type: production - update-types: - - "patch" - - package-ecosystem: pip - directory: "/.github/workflows" - schedule: - interval: monthly - timezone: "Etc/UTC" - time: "10:00" - reviewers: - - "edgarrmondragon" - commit-message: - prefix: "ci: " - groups: - ci: - patterns: - - "*" - - package-ecosystem: github-actions - directory: "/" - schedule: - interval: monthly - timezone: "Etc/UTC" - time: "10:00" - reviewers: - - "edgarrmondragon" - commit-message: - prefix: "ci: " - groups: - actions: - patterns: - - "*" diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 369dc7e..aa5f9b8 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -1,6 +1,10 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": [ - "local>edgarrmondragon/.github:renovate-config" - ] + // https://github.com/edgarrmondragon/.github/blob/main/renovate/singer.json5 + "edgarrmondragon/.github//renovate/singer.json5", + + // https://github.com/edgarrmondragon/.github/blob/main/renovate/uv.json5 + "edgarrmondragon/.github//renovate/uv.json5", + ], } diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4aaf74e..5ac8a04 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -29,7 +29,12 @@ concurrency: env: FORCE_COLOR: 1 - UV_VERSION: ~=0.5.27 + # renovate: datasource=pypi depName=uv + UV_VERSION: 0.5.27 + # renovate: datasource=pypi depName=tox + TOX_VERSION: 4.24.1 + # renovate: datasource=pypi depName=tox-uv + TOX_UV_VERSION: 1.21.1 jobs: tests: @@ -64,6 +69,6 @@ jobs: TAP_BITSO_SECRET: ${{ secrets.TAP_BITSO_SECRET }} run: > uvx - --with tox-uv - --with tox + --with tox-uv==${{ env.TOX_UV_VERSION }} + --with tox==${{ env.TOX_VERSION }} tox -e ${{ matrix.environment || matrix.python-version }}