From 0b2eeaf17b8aa5dd4b3696d46aa4562f83f2fedb Mon Sep 17 00:00:00 2001 From: CarlTern <35721844+CarlTern@users.noreply.github.com> Date: Wed, 21 Feb 2024 16:30:32 +0100 Subject: [PATCH 1/2] Create debricked scan configuration --- .github/workflows/debricked.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/debricked.yml diff --git a/.github/workflows/debricked.yml b/.github/workflows/debricked.yml new file mode 100644 index 0000000..884f9b5 --- /dev/null +++ b/.github/workflows/debricked.yml @@ -0,0 +1,14 @@ +name: Debricked scan + +on: [push] + +jobs: + vulnerabilities-scan: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - uses: debricked/actions/callgraph@v3 + - uses: debricked/actions@v3 + env: + DEBRICKED_TOKEN: ${{ secrets.DEBRICKED_TOKEN }} From c69314d95ba794456d7307f26c1893d7cf831f00 Mon Sep 17 00:00:00 2001 From: CarlTern <35721844+CarlTern@users.noreply.github.com> Date: Thu, 30 May 2024 15:32:23 +0200 Subject: [PATCH 2/2] Add fingerprint step before scanning --- .github/workflows/debricked.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/debricked.yml b/.github/workflows/debricked.yml index 884f9b5..7d9e83f 100644 --- a/.github/workflows/debricked.yml +++ b/.github/workflows/debricked.yml @@ -9,6 +9,7 @@ jobs: steps: - uses: actions/checkout@v3 - uses: debricked/actions/callgraph@v3 + - uses: debricked/actions/fingerprint@v3 - uses: debricked/actions@v3 env: DEBRICKED_TOKEN: ${{ secrets.DEBRICKED_TOKEN }}