File tree Expand file tree Collapse file tree 3 files changed +24
-13
lines changed
Expand file tree Collapse file tree 3 files changed +24
-13
lines changed Original file line number Diff line number Diff line change 1+ # dependabot.yaml reference: https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
2+ #
3+ # Notes:
4+ # - Status and logs from dependabot are provided at
5+ # https://github.com/jupyterhub/jupyterhub-python-repo-template/network/updates.
6+ #
7+ version : 2
8+ updates :
9+ # Maintain dependencies in our GitHub Workflows
10+ - package-ecosystem : github-actions
11+ directory : /
12+ schedule :
13+ interval : monthly
14+ time : " 05:00"
15+ timezone : Etc/UTC
Original file line number Diff line number Diff line change 1414 needs : [tests] # require tests to pass before deploy runs
1515 runs-on : ubuntu-latest
1616 steps :
17- - name : Checkout source
18- uses : actions/checkout@v3
19- - name : Set up Python 3.9
20- uses : actions/setup-python@v4
17+ - uses : actions/checkout@v4
18+ - uses : actions/setup-python@v5
2119 with :
2220 python-version : 3.9
2321
2826 python -m build
2927
3028 - name : Publish
31- uses : pypa/gh-action-pypi-publish@v1.6.4
29+ uses : pypa/gh-action-pypi-publish@v1
3230 with :
3331 user : __token__
3432 password : ${{ secrets.PYPI_KEY }}
Original file line number Diff line number Diff line change 1111 timeout-minutes : 2
1212
1313 steps :
14- - uses : actions/checkout@v2
15- - uses : actions/setup-python@v2
14+ - uses : actions/checkout@v4
15+ - uses : actions/setup-python@v5
1616 with :
1717 python-version : 3.13
1818
3333 runs-on : ubuntu-22.04
3434
3535 steps :
36- - uses : actions/checkout@v2
36+ - uses : actions/checkout@v4
3737 # Only testing 3.8 to avoid too many github API calls
38- - name : Set up Python 3.8
39- uses : actions/setup-python@v1
38+ - uses : actions/setup-python@v5
4039 with :
4140 python-version : 3.8
4241 - name : Install dependencies
5251 runs-on : ubuntu-24.04
5352
5453 steps :
55- - uses : actions/checkout@v2
56- - name : Set up Python
57- uses : actions/setup-python@v1
54+ - uses : actions/checkout@v4
55+ - uses : actions/setup-python@v5
5856 with :
5957 python-version : 3.13
6058 - name : Install dependencies
You can’t perform that action at this time.
0 commit comments