Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependabot.yml for auto-updating dependencies across actions #77

Merged
merged 1 commit into from
Nov 22, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 20 additions & 6 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,22 @@
version: 2
updates:
- package-ecosystem: pip
directory: "/"
schedule:
interval: daily
time: "13:00"
open-pull-requests-limit: 10
- package-ecosystem: pip
directory: "/"
schedule:
interval: daily
open-pull-requests-limit: 10
- package-ecosystem: github-actions
directory: "/"
schedule:
interval: daily
open-pull-requests-limit: 10
- package-ecosystem: pip
directory: "/.github/workflows"
schedule:
interval: daily
open-pull-requests-limit: 10
- package-ecosystem: pip
directory: "/docs"
schedule:
interval: daily
open-pull-requests-limit: 10
3 changes: 3 additions & 0 deletions .github/workflows/constraints.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
pip==20.2.4
nox==2020.8.22
poetry==1.1.2
5 changes: 3 additions & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@ jobs:
with:
python-version: '3.8'
architecture: x64
- run: pip install nox==2020.5.24
- run: pip install poetry==1.0.9
- run: pip install --constraint=.github/workflows/constraints.txt pip
- run: pip install --constraint=.github/workflows/constraints.txt nox
- run: pip install --constraint=.github/workflows/constraints.txt poetry
- run: nox --sessions tests coverage xdoctest
env:
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@ jobs:
with:
python-version: '3.8'
architecture: x64
- run: pip install nox==2020.5.24
- run: pip install poetry==1.0.9
- run: pip install --constraint=.github/workflows/constraints.txt pip
- run: pip install --constraint=.github/workflows/constraints.txt nox
- run: pip install --constraint=.github/workflows/constraints.txt poetry
- run: nox
- run: poetry build
- run: poetry publish --username=__token__ --password=${{ secrets.PYPI_TOKEN }}
5 changes: 3 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- run: pip install nox==2020.5.24
- run: pip install poetry==1.0.9
- run: pip install --constraint=.github/workflows/constraints.txt pip
- run: pip install --constraint=.github/workflows/constraints.txt nox
- run: pip install --constraint=.github/workflows/constraints.txt poetry
- run: nox