File tree Expand file tree Collapse file tree 6 files changed +22
-9
lines changed Expand file tree Collapse file tree 6 files changed +22
-9
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ version : 2
3
+ updates :
4
+ - package-ecosystem : " github-actions"
5
+ directory : " /"
6
+ schedule :
7
+ interval : " daily"
8
+ - package-ecosystem : " pip"
9
+ directory : " /.github/workflows"
10
+ schedule :
11
+ interval : " daily"
Original file line number Diff line number Diff line change 18
18
python-version : 3.x
19
19
20
20
- name : Install Ansible
21
- run : pip3 install ansible-base==2.10.3
21
+ run : pip3 install -r .github/workflows/requirements_galaxy.txt
22
22
23
23
- name : Import release to Ansible Galaxy
24
24
run : ansible-galaxy role import --api-key ${{ secrets.GALAXY_API_KEY }} $(echo ${{ github.repository }} | cut -d/ -f1) $(echo ${{ github.repository }} | cut -d/ -f2)
Original file line number Diff line number Diff line change 35
35
36
36
- name : Install Molecule dependencies
37
37
if : " !(matrix.scenario == 'plus' && github.event.pull_request.head.repo.full_name != github.repository)"
38
- run : |
39
- pip3 install ansible-base==2.10.4
40
- pip3 install ansible==2.10.5
41
- pip3 install ansible-lint==4.3.7
42
- pip3 install yamllint==1.25.0
43
- pip3 install "molecule[docker]"==3.2.2
44
- pip3 install docker==4.4.1
38
+ run : pip3 install -r .github/workflows/requirements_molecule.txt
45
39
46
40
- name : Run Molecule tests
47
41
if : " !(matrix.scenario == 'plus' && github.event.pull_request.head.repo.full_name != github.repository)"
Original file line number Diff line number Diff line change
1
+ ansible-base==2.10.4
Original file line number Diff line number Diff line change
1
+ ansible-base==2.10.4
2
+ ansible==2.10.5
3
+ ansible-lint==4.3.7
4
+ yamllint==1.25.0
5
+ molecule[docker]==3.2.2
6
+ docker==4.4.1
Original file line number Diff line number Diff line change 4
4
5
5
FEATURES:
6
6
7
- Add support for configuration snippets.
7
+ * Add support for configuration snippets.
8
+ * Add support for Dependabot.
8
9
9
10
ENHANCEMENTS:
10
11
You can’t perform that action at this time.
0 commit comments