Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[updatecli] 8.x - Update hermit and pre-commit dependencies #2930

Merged
merged 4 commits into from
Jan 30, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ repos:
files: deploy/cloudformation/.*yml

- repo: https://github.com/aws-cloudformation/cfn-lint
rev: v1.22.4
rev: v1.22.7
hooks:
- id: cfn-python-lint
files: deploy/cloudformation/.*.yml
Expand Down Expand Up @@ -170,7 +170,7 @@ repos:
files: (\.rego)$

- repo: https://github.com/igorshubovych/markdownlint-cli
rev: v0.43.0
rev: v0.44.0
hooks:
- id: markdownlint
args: [ '--disable',
Expand All @@ -184,7 +184,7 @@ repos:
files: security-policies/.*\.(md|markdown)$

- repo: https://github.com/StyraInc/regal
rev: v0.29.2
rev: v0.30.2
hooks:
- id: regal-lint
args: [security-policies/bundle]
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion bin/aws
2 changes: 1 addition & 1 deletion bin/aws_completer
2 changes: 1 addition & 1 deletion bin/bq
2 changes: 1 addition & 1 deletion bin/docker-credential-gcloud
2 changes: 1 addition & 1 deletion bin/gcloud
2 changes: 1 addition & 1 deletion bin/git-credential-gcloud.sh
2 changes: 1 addition & 1 deletion bin/gsutil
2 changes: 1 addition & 1 deletion bin/just
2 changes: 1 addition & 1 deletion bin/opa
2 changes: 1 addition & 1 deletion bin/pre-commit
2 changes: 1 addition & 1 deletion bin/regal
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ ConvertDaysToHours(duration) := result if {

# set the rule result
calculate_result(evaluation) := "passed" if {
evaluation
evaluation != false
} else := "failed"

# Safely evaluate evidence. In case a key is undefined, it will be defaulted.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public_access_is_restricted(cluster, _) if {
}

public_access_is_restricted(cluster, cidr_allowed) if {
cidr_allowed
cidr_allowed == true

cluster.ResourcesVpcConfig.EndpointPublicAccess
public_access_cidrs := cluster.ResourcesVpcConfig.PublicAccessCidrs
Expand Down Expand Up @@ -48,6 +48,6 @@ finding(cidr_allowed) := result if {
}

cidr_evidence(config, cidr_allowed) := result if {
cidr_allowed
cidr_allowed == true
result := {"public_access_cidrs": config.PublicAccessCidrs}
} else := {}