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

Update dependencies for ansible validated content #41

Merged
merged 2 commits into from
Apr 17, 2024
Merged
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
21 changes: 9 additions & 12 deletions .ansible-lint.yml
Original file line number Diff line number Diff line change
@@ -1,27 +1,24 @@
---
# Ansible Linter rules
# mock_modules:
# - community.vmware.vmware_guest_snapshot
profile: production

# Exclude paths from linter
exclude_paths:
- '.github/'
- 'changelogs/'
- 'docs/'
- 'collections/'
- 'extensions/molecule/'
- ".github/"
- "changelogs/"
- "docs/"
- "collections/"
- "extensions/molecule/"

# Ansible Linter rules
skip_list:
- yaml[colons] # Violations reported by yamllint.
- yaml[line-length] # Violations reported by yamllint.
- yaml[line-length] # Violations reported by yamllint.

warn_list: # or 'skip_list' to silence them completely
warn_list: # or 'skip_list' to silence them completely
- git-latest # Allow for newest git version
- package-latest # Allow newest package version
- template-instead-of-copy # Templated files should use template instead of copy
- template-instead-of-copy # Templated files should use template instead of copy
# - command-instead-of-shell # Use shell only when shell functionality is required.
# - no-changed-when # temp until updated all tasks
# - sanity[cannot-ignore] # cope with shebang test bug

...
File renamed without changes.
2 changes: 0 additions & 2 deletions .github/workflows/ansible-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -187,9 +187,7 @@ jobs:
python:
- '2.6'
- '2.7'
# - '3.5'
- '3.6'
- '3.7'
- '3.8'
- '3.9'
- '3.10'
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ jobs:
cat << EOF > ansible.cfg
[galaxy]
server_list = rh_automation_hub

[galaxy_server.rh_automation_hub]
url=https://cloud.redhat.com/api/automation-hub/
auth_url=https://sso.redhat.com/auth/realms/redhat-external/protocol/openid-connect/token
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -133,3 +133,6 @@ dmypy.json

install-deps
pre-commit

# Ignore ansible.cfg
ansible.cfg
File renamed without changes.
4 changes: 4 additions & 0 deletions changelogs/fragments/remove_system_roles_dependency.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
minor_changes:
- removed fedora.linux_system_roles dependency from required dependencies
...
5 changes: 2 additions & 3 deletions galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

namespace: infra
name: convert2rhel
version: "1.0.0"
version: "1.1.0"
readme: README.md
authors:
- Rodolfo Olivieri (github.com/r0x0d)
Expand All @@ -16,7 +16,7 @@ tags:
- conversions
- linux
repository: https://github.com/redhat-cop/infra.convert2rhel
# documentation: https://github.com/ansible-collection-migration/community.REPO_NAME/tree/main/docs
documentation: https://github.com/redhat-cop/infra.convert2rhel/tree/main/docs
homepage: https://github.com/redhat-cop/infra.convert2rhel
issues: https://github.com/redhat-cop/infra.convert2rhel/issues
build_ignore:
Expand All @@ -26,7 +26,6 @@ build_ignore:
- extensions
dependencies:
ansible.posix: ">=1.5.1"
fedora.linux_system_roles: ">=1.21.0"
r0x0d marked this conversation as resolved.
Show resolved Hide resolved
community.general: ">=6.6.0"
ansible.utils: ">=2.12.0"
...