Skip to content

Commit

Permalink
Update Changelog Version
Browse files Browse the repository at this point in the history
Signed-off-by: Stephen Williams <[email protected]>
  • Loading branch information
MrSteve81 committed Aug 14, 2023
1 parent a0ba20d commit 78a3d5a
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
3 changes: 0 additions & 3 deletions .ansible-lint
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,7 @@ quiet: true
skip_list:
- 'schema'
- 'no-changed-when'
- 'fqcn-builtins'
- 'experimental'
- 'fqcn[action-core]'
- 'fqcn[action]'
- 'name[casing]'
- 'name[template]'
- 'jinja[spacing]'
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,4 @@ benchparse/

# GitHub Action/Workflow files
.github/
.DS_Store
2 changes: 1 addition & 1 deletion .yamllint
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ rules:
trailing-spaces: enable
truthy:
allowed-values: ['true', 'false']
check-keys: false
check-keys: true
4 changes: 3 additions & 1 deletion ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Release 1.0.0
## Release 1.1.0

August 2023 Update
- Updated Workflows To Central Repo
Expand All @@ -16,6 +16,8 @@ May 2023 Update
- Added Skip For Testing to controls that will break in cloud.
- Added Support for Azure for Controls that break.

## Release 1.0.0

December 2022 Update
- Updated Readme
- Added Changelog.md and updated.
Expand Down
2 changes: 1 addition & 1 deletion tasks/cat2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@
- name: "MEDIUM | WN10-00-000060 | PATCH | Non system-created file shares on a system must limit access to groups that require it."
block:
- name: "MEDIUM | WN10-00-000060 | AUDIT | Non system-created file shares on a system must limit access to groups that require it. | Get Share Names"
win_shell: Get-SmbShare | Where-Object { ($_.Name -notlike "ADMIN$") -and ($_.Name -notlike 'C$') -and ($_.Name -notlike 'IPC$') } | Select-Object -Property Name | format-table -hidetableheaders
ansible.windows.win_shell: Get-SmbShare | Where-Object { ($_.Name -notlike "ADMIN$") -and ($_.Name -notlike 'C$') -and ($_.Name -notlike 'IPC$') } | Select-Object -Property Name | format-table -hidetableheaders
changed_when: false
failed_when: false
register: wn10_00_000060_share_names
Expand Down

0 comments on commit 78a3d5a

Please sign in to comment.