File tree 3 files changed +8
-5
lines changed
3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 1
1
repos :
2
2
- repo : https://github.com/rhysd/actionlint
3
- rev : v1.7.4
3
+ rev : v1.7.5
4
4
hooks :
5
5
- id : actionlint-docker
6
6
- repo : https://github.com/antonbabenko/pre-commit-terraform
7
- rev : v1.96.2
7
+ rev : v1.96.3
8
8
hooks :
9
9
- id : terraform_fmt
10
10
# - id: terraform_docs
11
11
# args: ['--sort-by-required', '--no-providers']
12
12
- repo : https://github.com/astral-sh/ruff-pre-commit
13
- rev : v0.8.1
13
+ rev : v0.8.4
14
14
hooks :
15
15
- id : ruff
16
16
args : [--fix]
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ coverage==7.6.8
6
6
# Integration tests and tasks
7
7
invoke == 2.2.0
8
8
# Type hints
9
- mypy [faster-cache ]== 1.13.0
9
+ mypy [faster-cache ]== 1.14.1
10
10
types-pyyaml == 6.0.12.20240917
11
11
types-requests == 2.32.0.20241016
12
12
types-beautifulsoup4 == 4.12.0.20241020
Original file line number Diff line number Diff line change @@ -577,9 +577,12 @@ def test_exclude_actions_empty_sid_from_crud_output(self):
577
577
}
578
578
self .maxDiff = None
579
579
print (json .dumps (result , indent = 4 ))
580
+ actual_actions = next (
581
+ (statement for statement in expected_result ["Statement" ] if statement ["Sid" ] == "S3WriteBucket" ), None
582
+ )
580
583
expected_actions = expected_result ["Statement" ][0 ]["Action" ]
581
584
for action in expected_actions :
582
- self .assertIn (action , result [ "Statement" ][ 0 ] ["Action" ])
585
+ self .assertIn (action , actual_actions ["Action" ])
583
586
# self.assertDictEqual(result, expected_result)
584
587
585
588
def test_write_template_with_sts_actions (self ):
You can’t perform that action at this time.
0 commit comments