mirror of
https://github.com/laramies/theHarvester.git
synced 2026-08-31 12:19:46 +02:00
* feat: package HarvestView for local deployment * Align container smoke with JSONL API * Align container smoke with unversioned JSONL * refactor: rename web launcher to harvestview
24 lines
653 B
YAML
24 lines
653 B
YAML
name: TheHarvester Docker Image CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Harden the runner (Audit all outbound calls)
|
|
uses: step-security/harden-runner@bf7454d06d71f1098171f2acdf0cd4708d7b5920 # v2.20.0
|
|
with:
|
|
egress-policy: audit
|
|
|
|
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
with:
|
|
persist-credentials: false
|
|
- name: Build the Docker image
|
|
run: docker build --tag theharvester .
|
|
- name: Smoke test
|
|
run: docker run --rm theharvester --help | grep harvestview
|