Skip to content

Commit

Permalink
update(rules): no need for double quoting required engine version value
Browse files Browse the repository at this point in the history
Signed-off-by: Lorenzo Susini <susinilorenzo1@gmail.com>
  • Loading branch information
loresuso authored and poiana committed Nov 7, 2023
1 parent 8e1ae00 commit 8f0520f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion rules/falco-incubating_rules.yaml
Expand Up @@ -25,7 +25,7 @@

# Starting with version 8, the Falco engine supports exceptions.
# However the Falco rules file does not use them by default.
- required_engine_version: "0.26.0"
- required_engine_version: 0.26.0

- macro: open_write
condition: (evt.type in (open,openat,openat2) and evt.is_open_write=true and fd.typechar='f' and fd.num>=0)
Expand Down
2 changes: 1 addition & 1 deletion rules/falco-sandbox_rules.yaml
Expand Up @@ -25,7 +25,7 @@

# Starting with version 8, the Falco engine supports exceptions.
# However the Falco rules file does not use them by default.
- required_engine_version: "0.26.0"
- required_engine_version: 0.26.0

# Currently disabled as read/write are ignored syscalls. The nearly
# similar open_write/open_read check for files being opened for
Expand Down
2 changes: 1 addition & 1 deletion rules/falco_rules.yaml
Expand Up @@ -25,7 +25,7 @@

# Starting with version 8, the Falco engine supports exceptions.
# However the Falco rules file does not use them by default.
- required_engine_version: "0.26.0"
- required_engine_version: 0.26.0

# Currently disabled as read/write are ignored syscalls. The nearly
# similar open_write/open_read check for files being opened for
Expand Down

0 comments on commit 8f0520f

Please sign in to comment.