Skip to content

Commit

Permalink
SDAF - Release 3.9.0 (#486)
Browse files Browse the repository at this point in the history
* SDAF - Release 3.9.0

---------

Co-authored-by: Jennifer Hajduk <[email protected]>
Co-authored-by: Kimmo Forss <[email protected]>
Co-authored-by: Shayak Sarkar <[email protected]>
Co-authored-by: Jaskirat Singh <[email protected]>
Co-authored-by: Kimmo Forss <[email protected]>
Co-authored-by: Troy Shane <[email protected]>
Co-authored-by: Rickmarges <[email protected]>
Co-authored-by: Marges, RSY (Rick) <[email protected]>
Co-authored-by: Harm Jan Stam <[email protected]>
Co-authored-by: Harm Jan Stam <[email protected]>
  • Loading branch information
11 people authored Sep 23, 2023
1 parent 733675c commit a23a271
Show file tree
Hide file tree
Showing 239 changed files with 9,848 additions and 4,672 deletions.
27 changes: 24 additions & 3 deletions .github/workflows/github-actions-ansible-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,28 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ansible/[email protected]
- name: Checkout the code
uses: actions/checkout@v4

- name: Setup Python
uses: actions/setup-python@v4
with:
path: deploy/ansible
python-version: '3.x'

- name: Install Ansible and Ansible-Lint
run: |
python -m pip install --upgrade pip
pip install ansible-core ansible-lint jmespath netaddr
- name: Install Ansible Collections
run: |
ansible-galaxy collection install ansible.windows --force
ansible-galaxy collection install ansible.posix --force
ansible-galaxy collection install ansible.utils --force
ansible-galaxy collection install ansible.netcommon:5.1.2 --force
ansible-galaxy collection install community.windows --force
ansible-galaxy collection install community.general --force
- name: Run ansible-lint
run: |
ansible-lint deploy/ansible -c .ansible-lint
11 changes: 7 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,15 @@ Webapp/SDAF/bin
Webapp/SDAF/Properties/PublishProfiles
Webapp/.vs/ProjectEvaluation
Webapp/SDAF/Properties/ServiceDependencies
Webapp/.npmrc

# Ignore OS files - MKD 20221221
**/.DS_Store

# Additional files to ignore
owners.txt
NuGet.config
# Ignore Python cache directories
# Visual Studio 2015/2017 cache/options directory
.vs/

# Python Tools for Visual Studio (PTVS)
__pycache__/
__pycache__
*.pyc
Loading

0 comments on commit a23a271

Please sign in to comment.