diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 93e743173..5be7f41f8 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -6,6 +6,13 @@ updates: interval: daily time: "13:00" open-pull-requests-limit: 10 + groups: + python: + update-types: + - "patch" + - "minor" + patterns: + - "*" # Maintain dependencies for GitHub Actions - package-ecosystem: github-actions diff --git a/.github/workflows/publish-to-pypi.yml b/.github/workflows/publish-to-pypi.yml index 52b811b92..b6117a046 100644 --- a/.github/workflows/publish-to-pypi.yml +++ b/.github/workflows/publish-to-pypi.yml @@ -23,7 +23,7 @@ jobs: run: | python setup.py build sdist bdist_wheel - name: Publish distribution 📦 to PyPI - uses: pypa/gh-action-pypi-publish@v1.8.12 + uses: pypa/gh-action-pypi-publish@v1.8.14 with: password: ${{ secrets.PYPI_API_TOKEN_PUPPETBOARD }} # repository_url: https://test.pypi.org/legacy/ diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d6699509c..7b715b616 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -33,7 +33,7 @@ jobs: pytest --cov=. --cov-report=xml --strict-markers --mypy -v puppetboard test pylint --errors-only puppetboard test - name: Upload coverage to Codecov - uses: codecov/codecov-action@v4.1.0 + uses: codecov/codecov-action@v4.1.1 with: token: ${{ secrets.CODECOV_TOKEN }} fail_ci_if_error: true