diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 0e28f6a..98b3e66 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,11 +1,16 @@ +--- version: 2 updates: - package-ecosystem: github-actions directory: "/" schedule: interval: weekly + cooldown: + default-days: 7 - package-ecosystem: pip directory: "/" schedule: interval: weekly + cooldown: + default-days: 7 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4d426f1..8a47a49 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,7 +42,7 @@ jobs: pytest: name: Pytests - runs-on: ubuntu-latest + runs-on: ubuntu-slim steps: - name: Checkout Code uses: actions/checkout@v6 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 440e7cb..fcdf684 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -7,7 +7,7 @@ on: jobs: deploy: name: Publish to PyPI - runs-on: ubuntu-latest + runs-on: ubuntu-slim steps: - uses: actions/checkout@v6 - name: Set up Python diff --git a/fitbit_cli/__init__.py b/fitbit_cli/__init__.py index 0ccae9b..fbb3365 100644 --- a/fitbit_cli/__init__.py +++ b/fitbit_cli/__init__.py @@ -3,4 +3,4 @@ fitbit_cli Module """ -__version__ = "1.5.1" +__version__ = "1.5.2"