File tree 1 file changed +3
-2
lines changed
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Action to run pip-compile weekly and create a Pull Request with the changes.
2
- # Althought GitHub says that pip-compile is supported by dependabot, we couldn't make it work together.
2
+ # Although GitHub says that pip-compile is supported by dependabot, we couldn't make it work together.
3
3
# That's why this action exists.
4
4
# If we ever find the proper configuration for dependabot+pip-compile,
5
5
# we can delete this action.
22
22
23
23
name : Update dependencies
24
24
runs-on : ubuntu-latest
25
+ if : github.repository_owner == 'readthedocs' # do not run this job on forks
25
26
steps :
26
27
- uses : actions/checkout@v4
27
28
- name : Update submodules
34
35
run : sudo apt-get install libpq-dev
35
36
36
37
- name : Install piptools and invoke
37
- run : python -m pip install -U pip-tools invoke
38
+ run : python -m pip install --upgrade pip-tools invoke
38
39
39
40
- name : Update dependencies from requirements/*.txt
40
41
run : invoke requirements.update
You can’t perform that action at this time.
0 commit comments