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

chore(deps): update ansible collections full - abandoned #823

Closed
wants to merge 2 commits into from
Closed
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
49 changes: 34 additions & 15 deletions .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,60 +9,79 @@
"fileMatch": ["(^|/)[\\w-]*requirements([_.]\\w+)?\\.ya?ml$"],
"packageRules": [
{
"matchPackageNames": ["*"],
"groupName": "Ansible collections"
"groupName": "Ansible collections",
"matchPackageNames": ["*"]
},
{
"matchUpdateTypes": ["minor", "patch"],
"automerge": true,
"matchCurrentVersion": "!/^0/",
"automerge": true
"matchUpdateTypes": ["minor", "patch"]
}
]
},
"packageRules": [
{
"groupName": "Ansible collections full",
"managers": [
"ansible-galaxy",
"regex"
],
"additionalBranchPrefix": ""
}
],
"customManagers": [
{
"customType": "regex",
"datasourceTemplate": "galaxy-collection",
"fileMatch": ["README.md"],
"matchStrings": ["- name: (?<depName>\\w+\\.\\w+)(?:\\s+#.*)?\\s+version: (?<currentValue>\\d+\\.\\d+\\.\\d+)"],
"versioningTemplate": "semver"
}
],
"dockerfile": {
"ignorePaths": ["molecule/**/Dockerfile.j2"]
},
"github-actions": {
"addLabels": ["skip-changelog"],
"packageRules": [
{
"groupName": "GitHub Actions",
"matchPackageNames": [
"actions/**",
"github/**"
],
"groupName": "GitHub Actions"
]
},
{
"matchPackageNames": ["docker/**"],
"groupName": "Docker Actions"
"groupName": "Docker Actions",
"matchPackageNames": ["docker/**"]
},
{
"enabled": false,
"matchUpdateTypes": ["digest"]
},
{
"automerge": true,
"matchUpdateTypes": ["minor", "patch"],
"matchCurrentVersion": "!/^0/",
"automerge": true
"matchCurrentVersion": "!/^0/"
}
]
},
"pip_requirements": {
"fileMatch": ["(^|/)[\\w-]*requirements([_.]\\w+)?\\.(txt|pip)$"],
"packageRules": [
{
"matchPackageNames": ["*"],
"groupName": "Python dependencies"
"groupName": "Python dependencies",
"matchPackageNames": ["*"]
},
{
"matchPackageNames": ["ansible-core"],
"groupName": "Ansible core",
"matchPackageNames": ["ansible-core"],
"separateMinorPatch": true
},
{
"automerge": true,
"matchUpdateTypes": ["patch"],
"matchCurrentVersion": "!/^0/",
"automerge": true
"matchCurrentVersion": "!/^0/"
}
]
}
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,13 @@ This will also ensure you are deploying/running this role with a fully tested ve
---
collections:
- name: ansible.posix
version: 1.5.4
version: 1.6.2
- name: community.general
version: 9.2.0
version: 9.5.1
- name: community.crypto # Only required if you plan to install NGINX Plus
version: 2.21.1
version: 2.22.3
- name: community.docker # Only required if you plan to use Molecule (see below)
version: 3.11.0
version: 3.13.3
```

- You will need to run this role as a root user using Ansible's `become` parameter. Make sure you have set up the appropriate permissions on your target hosts.
Expand Down