File tree Expand file tree Collapse file tree 3 files changed +8
-5
lines changed
Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 11repos :
22 - repo : https://github.com/rhysd/actionlint
3- rev : v1.7.4
3+ rev : v1.7.5
44 hooks :
55 - id : actionlint-docker
66 - repo : https://github.com/antonbabenko/pre-commit-terraform
7- rev : v1.96.2
7+ rev : v1.96.3
88 hooks :
99 - id : terraform_fmt
1010# - id: terraform_docs
1111# args: ['--sort-by-required', '--no-providers']
1212 - repo : https://github.com/astral-sh/ruff-pre-commit
13- rev : v0.8.1
13+ rev : v0.8.4
1414 hooks :
1515 - id : ruff
1616 args : [--fix]
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ coverage==7.6.8
66# Integration tests and tasks
77invoke == 2.2.0
88# Type hints
9- mypy [faster-cache ]== 1.13.0
9+ mypy [faster-cache ]== 1.14.1
1010types-pyyaml == 6.0.12.20240917
1111types-requests == 2.32.0.20241016
1212types-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):
577577 }
578578 self .maxDiff = None
579579 print (json .dumps (result , indent = 4 ))
580+ actual_actions = next (
581+ (statement for statement in expected_result ["Statement" ] if statement ["Sid" ] == "S3WriteBucket" ), None
582+ )
580583 expected_actions = expected_result ["Statement" ][0 ]["Action" ]
581584 for action in expected_actions :
582- self .assertIn (action , result [ "Statement" ][ 0 ] ["Action" ])
585+ self .assertIn (action , actual_actions ["Action" ])
583586 # self.assertDictEqual(result, expected_result)
584587
585588 def test_write_template_with_sts_actions (self ):
You can’t perform that action at this time.
0 commit comments