Skip to content

Commit

Permalink
Merge branch 'dev' into dependabot/pip/dev/lxml-5.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
TheTechromancer authored Aug 16, 2024
2 parents 50d85cd + 4c9fbdf commit 4279621
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/version_updater.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
if: steps.update-version.outcome == 'success'
uses: peter-evans/create-pull-request@v5
with:
token: ${{ secrets.GITHUB_TOKEN }}
token: ${{ secrets.BBOT_DOCS_UPDATER_PAT }}
commit-message: "Update nuclei"
title: "Update nuclei to ${{ env.latest_version }}"
body: |
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
if: steps.update-version.outcome == 'success'
uses: peter-evans/create-pull-request@v5
with:
token: ${{ secrets.GITHUB_TOKEN }}
token: ${{ secrets.BBOT_DOCS_UPDATER_PAT }}
commit-message: "Update trufflehog"
title: "Update trufflehog to ${{ env.latest_version }}"
body: |
Expand Down
2 changes: 1 addition & 1 deletion bbot/modules/docker_pull.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
class docker_pull(BaseModule):
watched_events = ["CODE_REPOSITORY"]
produced_events = ["FILESYSTEM"]
flags = ["passive", "safe", "slow"]
flags = ["passive", "safe", "slow", "code-enum"]
meta = {
"description": "Download images from a docker repository",
"created_date": "2024-03-24",
Expand Down
2 changes: 1 addition & 1 deletion bbot/modules/git_clone.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
class git_clone(github):
watched_events = ["CODE_REPOSITORY"]
produced_events = ["FILESYSTEM"]
flags = ["passive", "safe", "slow"]
flags = ["passive", "safe", "slow", "code-enum"]
meta = {
"description": "Clone code github repositories",
"created_date": "2024-03-08",
Expand Down
2 changes: 1 addition & 1 deletion bbot/modules/github_workflows.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
class github_workflows(github):
watched_events = ["CODE_REPOSITORY"]
produced_events = ["FILESYSTEM"]
flags = ["passive", "safe"]
flags = ["passive", "safe", "code-enum"]
meta = {
"description": "Download a github repositories workflow logs",
"created_date": "2024-04-29",
Expand Down
4 changes: 3 additions & 1 deletion bbot/modules/unstructured.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,9 @@ class unstructured(BaseModule):
}

deps_apt = ["libmagic-dev", "poppler-utils", "tesseract-ocr", "libreoffice", "pandoc"]
deps_pip = ["unstructured[all-docs]"]
deps_pip = [
"git+https://github.com/Unstructured-IO/unstructured@d0211cc41faa3988b0cfdefa3e0a8f80adbf013b#egg=unstructured[all-docs]"
]

async def setup(self):
self.extensions = list(set([e.lower().strip(".") for e in self.config.get("extensions", [])]))
Expand Down

0 comments on commit 4279621

Please sign in to comment.