File tree Expand file tree Collapse file tree 3 files changed +35
-15
lines changed Expand file tree Collapse file tree 3 files changed +35
-15
lines changed Original file line number Diff line number Diff line change 1
1
# To get started with Dependabot version updates, you'll need to specify which
2
2
# package ecosystems to update and where the package manifests are located.
3
3
# Please see the documentation for all configuration options:
4
- # https://help .github.com/github/administering-a-repository/configuration-options-for-dependency-updates
4
+ # https://docs .github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5
5
6
6
version : 2
7
7
updates :
8
- - package-ecosystem : " pip" # See documentation for possible values
9
- directory : " /" # Location of package manifests
8
+ # GitHub Actions
9
+ - package-ecosystem : " github-actions"
10
+ directory : " /"
10
11
schedule :
11
12
interval : " daily"
13
+ commit-message :
14
+ prefix : ⬆
15
+ # Python
16
+ - package-ecosystem : " pip"
17
+ directory : " /"
18
+ schedule :
19
+ interval : " daily"
20
+ commit-message :
21
+ prefix : ⬆
Original file line number Diff line number Diff line change @@ -48,10 +48,13 @@ jobs:
48
48
with :
49
49
python-version : ${{ matrix.python-version }}
50
50
- name : Install Poetry
51
- uses : snok/install-poetry@v1
52
- with :
53
- virtualenvs-create : true
54
- virtualenvs-in-project : true
51
+ run : |
52
+ pip install pipx
53
+ pipx ensurepath
54
+ pipx install poetry
55
+ poetry config --local virtualenvs.create true
56
+ poetry config --local virtualenvs.in-project true
57
+ poetry env use python
55
58
- name : Install Dependencies
56
59
run : |
57
60
poetry config virtualenvs.in-project true
Original file line number Diff line number Diff line change @@ -52,10 +52,13 @@ jobs:
52
52
python-version : ${{ matrix.python-version }}
53
53
54
54
- name : Install Poetry
55
- uses : snok/install-poetry@v1
56
- with :
57
- virtualenvs-create : true
58
- virtualenvs-in-project : true
55
+ run : |
56
+ pip install pipx
57
+ pipx ensurepath
58
+ pipx install poetry
59
+ poetry config --local virtualenvs.create true
60
+ poetry config --local virtualenvs.in-project true
61
+ poetry env use python
59
62
- name : Install Release Dependencies
60
63
run : |
61
64
poetry config virtualenvs.in-project true
@@ -111,11 +114,15 @@ jobs:
111
114
with :
112
115
python-version : ' 3.12'
113
116
117
+
114
118
- name : Install Poetry
115
- uses : snok/install-poetry@v1
116
- with :
117
- virtualenvs-create : true
118
- virtualenvs-in-project : true
119
+ run : |
120
+ pip install pipx
121
+ pipx ensurepath
122
+ pipx install poetry
123
+ poetry config --local virtualenvs.create true
124
+ poetry config --local virtualenvs.in-project true
125
+ poetry env use python
119
126
120
127
- name : Install Release Dependencies
121
128
run : |
You can’t perform that action at this time.
0 commit comments