bitwarden_workflow_linter 0.2.1__py3-none-any.whl → 0.3.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- bitwarden_workflow_linter/__about__.py +1 -1
- bitwarden_workflow_linter/default_actions.json +5 -0
- bitwarden_workflow_linter/default_settings.yaml +1 -1
- bitwarden_workflow_linter/rules/step_approved.py +1 -1
- {bitwarden_workflow_linter-0.2.1.dist-info → bitwarden_workflow_linter-0.3.0.dist-info}/METADATA +1 -1
- {bitwarden_workflow_linter-0.2.1.dist-info → bitwarden_workflow_linter-0.3.0.dist-info}/RECORD +9 -9
- {bitwarden_workflow_linter-0.2.1.dist-info → bitwarden_workflow_linter-0.3.0.dist-info}/WHEEL +0 -0
- {bitwarden_workflow_linter-0.2.1.dist-info → bitwarden_workflow_linter-0.3.0.dist-info}/entry_points.txt +0 -0
- {bitwarden_workflow_linter-0.2.1.dist-info → bitwarden_workflow_linter-0.3.0.dist-info}/licenses/LICENSE.txt +0 -0
@@ -209,6 +209,11 @@
|
|
209
209
|
"sha": "445c42390d790569d938f9068d01af39ca030feb",
|
210
210
|
"version": "v1.0.0"
|
211
211
|
},
|
212
|
+
"maxim-lobanov/setup-xcode" : {
|
213
|
+
"name": "maxim-lobanov/setup-xcode",
|
214
|
+
"sha": "60606e260d2fc5762a71e64e74b2174e8ea3c8bd",
|
215
|
+
"version": "v1.6.0"
|
216
|
+
},
|
212
217
|
"microsoft/setup-msbuild": {
|
213
218
|
"name": "microsoft/setup-msbuild",
|
214
219
|
"sha": "1ff57057b5cfdc39105cd07a01d78e9b0ea0c14c",
|
@@ -3,7 +3,7 @@ enabled_rules:
|
|
3
3
|
- bitwarden_workflow_linter.rules.name_capitalized.RuleNameCapitalized
|
4
4
|
- bitwarden_workflow_linter.rules.pinned_job_runner.RuleJobRunnerVersionPinned
|
5
5
|
- bitwarden_workflow_linter.rules.job_environment_prefix.RuleJobEnvironmentPrefix
|
6
|
-
- bitwarden_workflow_linter.rules.
|
6
|
+
- bitwarden_workflow_linter.rules.step_approved.RuleStepUsesApproved
|
7
7
|
- bitwarden_workflow_linter.rules.step_pinned.RuleStepUsesPinned
|
8
8
|
- bitwarden_workflow_linter.rules.underscore_outputs.RuleUnderscoreOutputs
|
9
9
|
|
@@ -82,7 +82,7 @@ class RuleStepUsesApproved(Rule):
|
|
82
82
|
if self.skip(obj):
|
83
83
|
return True, ""
|
84
84
|
|
85
|
-
# Actions in bitwarden/
|
85
|
+
# Actions in bitwarden/ are auto-approved
|
86
86
|
if obj.uses and not obj.uses_path in self.settings.approved_actions:
|
87
87
|
return False, (
|
88
88
|
f"New Action detected: {obj.uses_path}\nFor security purposes, "
|
{bitwarden_workflow_linter-0.2.1.dist-info → bitwarden_workflow_linter-0.3.0.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: bitwarden_workflow_linter
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.3.0
|
4
4
|
Summary: Custom GitHub Action Workflow Linter
|
5
5
|
Project-URL: Homepage, https://github.com/bitwarden/workflow-linter
|
6
6
|
Project-URL: Issues, https://github.com/bitwarden/workflow-linter/issues
|
{bitwarden_workflow_linter-0.2.1.dist-info → bitwarden_workflow_linter-0.3.0.dist-info}/RECORD
RENAMED
@@ -1,9 +1,9 @@
|
|
1
|
-
bitwarden_workflow_linter/__about__.py,sha256=
|
1
|
+
bitwarden_workflow_linter/__about__.py,sha256=6Jd6E8G5LxFTHCS3y8PQUh6kFPFKcdPKIowraU_efEY,59
|
2
2
|
bitwarden_workflow_linter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
3
3
|
bitwarden_workflow_linter/actions.py,sha256=daob3be2Y22gfsAmGhTgBRCgGk18mlGduqc5Zn1Onz4,7897
|
4
4
|
bitwarden_workflow_linter/cli.py,sha256=wgkK1MlVbo6Zx3f2CZZ_tkSWq_hdsGciHJA1knX6Yuw,1699
|
5
|
-
bitwarden_workflow_linter/default_actions.json,sha256=
|
6
|
-
bitwarden_workflow_linter/default_settings.yaml,sha256=
|
5
|
+
bitwarden_workflow_linter/default_actions.json,sha256=Xfg6TMtNRnPYlD_pM2fLtCmXJZ1BYTAKfne-9Uon53E,8246
|
6
|
+
bitwarden_workflow_linter/default_settings.yaml,sha256=2VwOcB0g3v4A2Kt2UgGFM0TSpfd6S0oNA0SkTa5tGJA,576
|
7
7
|
bitwarden_workflow_linter/lint.py,sha256=RDHv5jGeGCf5XIHE8jyqQET3-cFykl7223SQVS4Q3pg,5525
|
8
8
|
bitwarden_workflow_linter/load.py,sha256=Ece2bwSSYeQ1xQQEjjqY6DlCkwznFYLG56VW_VTxU4E,4472
|
9
9
|
bitwarden_workflow_linter/rule.py,sha256=Qb60JiUDAWN3ayrMGoSbbDCSFmw-ql8djzAkxISaob4,3250
|
@@ -17,11 +17,11 @@ bitwarden_workflow_linter/rules/job_environment_prefix.py,sha256=HJeZhw1JVk4PTYZ
|
|
17
17
|
bitwarden_workflow_linter/rules/name_capitalized.py,sha256=XwRZ33OeQv_i7z_2Yf7TEgJNodOl5byXfegqfmhaTYQ,1914
|
18
18
|
bitwarden_workflow_linter/rules/name_exists.py,sha256=MxcaNQz64JXeHRPiOip9BxJNgPdpKQa7Z51mDoNw2hU,1681
|
19
19
|
bitwarden_workflow_linter/rules/pinned_job_runner.py,sha256=Dm6_sdPX0yFMji_y2LMFj4gWFaToEgauyBVpNRP2qiI,1606
|
20
|
-
bitwarden_workflow_linter/rules/step_approved.py,sha256=
|
20
|
+
bitwarden_workflow_linter/rules/step_approved.py,sha256=MZN423Dsk_1DRDuLz7TE9BE0YbLmZbFEHgcoF1MrFGM,3277
|
21
21
|
bitwarden_workflow_linter/rules/step_pinned.py,sha256=CSHbyeLx1uT8exRzOgFVc1dzMJGnbXhTHiteaoOLWUk,3390
|
22
22
|
bitwarden_workflow_linter/rules/underscore_outputs.py,sha256=johfE2Qwb_ww4xbW5u-ug37wNZbHZgKdRYg339cxUR8,4381
|
23
|
-
bitwarden_workflow_linter-0.
|
24
|
-
bitwarden_workflow_linter-0.
|
25
|
-
bitwarden_workflow_linter-0.
|
26
|
-
bitwarden_workflow_linter-0.
|
27
|
-
bitwarden_workflow_linter-0.
|
23
|
+
bitwarden_workflow_linter-0.3.0.dist-info/METADATA,sha256=Z6PQeT42vZx_emiBmPcharErkbda5qqbzpXyGFLfUlU,6146
|
24
|
+
bitwarden_workflow_linter-0.3.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
25
|
+
bitwarden_workflow_linter-0.3.0.dist-info/entry_points.txt,sha256=SA_yF9CwL4VMUvdcmCd7k9rjsQNzfeOUBuDnMnaO8QQ,60
|
26
|
+
bitwarden_workflow_linter-0.3.0.dist-info/licenses/LICENSE.txt,sha256=uY-7N9tbI7xc_c0WeTIGpacSCnsB91N05eCIg3bkaRw,35140
|
27
|
+
bitwarden_workflow_linter-0.3.0.dist-info/RECORD,,
|
{bitwarden_workflow_linter-0.2.1.dist-info → bitwarden_workflow_linter-0.3.0.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|
File without changes
|