Skip to content
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
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Kondukto Gosec Scan
name: Invicti ASPM Gosec Scan

on:
workflow_dispatch:
Expand All @@ -17,17 +17,17 @@ jobs:
runs-on: ubuntu-latest
env:
GO111MODULE: on
KONDUKTO_TOKEN: ${{ secrets.KONDUKTO_TOKEN }}
KONDUKTO_HOST: ${{ secrets.KONDUKTO_HOST }}
name: Kondukto GoSec Scan
INVICTI_ASPM_TOKEN: ${{ secrets.INVICTI_ASPM_TOKEN }}
INVICTI_ASPM_HOST: ${{ secrets.INVICTI_ASPM_HOST }}
name: Invicti ASPM GoSec Scan

steps:
- name: Configure Kondukto CLI
id: configure_kondukto_cli
- name: Configure Invicti ASPM CLI
id: configure_invicti_aspm_cli
run: |
curl -sSL https://cli.kondukto.io | sh

- name: Get Kondukto CLI Version
- name: Get Invicti ASPM CLI Version
id: kdt_version
run: |
kdt version
Expand All @@ -52,7 +52,7 @@ jobs:
name: results.json
path: results.json

- name: Upload Gosec Scan Results To Kondukto
- name: Upload Gosec Scan Results To Invicti ASPM
id: upload_gosec_results
run: |
kdt scan -p ${{ github.event.repository.name }} -t gosec -b ${{ github.ref_name }} -f results.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Kondukto Nancy Scan
name: Invicti ASPM Nancy Scan

on:
workflow_dispatch:
Expand All @@ -17,17 +17,17 @@ jobs:
runs-on: ubuntu-latest
env:
GO111MODULE: on
KONDUKTO_TOKEN: ${{ secrets.KONDUKTO_TOKEN }}
KONDUKTO_HOST: ${{ secrets.KONDUKTO_HOST }}
name: Kondukto Nancy Scan
INVICTI_ASPM_TOKEN: ${{ secrets.INVICTI_ASPM_TOKEN }}
INVICTI_ASPM_HOST: ${{ secrets.INVICTI_ASPM_HOST }}
name: Invicti ASPM Nancy Scan

steps:
- name: Configure Kondukto CLI
id: configure_kondukto_cli
- name: Configure Invicti ASPM CLI
id: configure_invicti_aspm_cli
run: |
curl -sSL https://cli.kondukto.io | sh

- name: Get Kondukto CLI Version
- name: Get Invicti ASPM CLI Version
id: kdt_version
run: |
kdt version
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
name: results.json
path: results.json

- name: Upload Nancy Scan Results To Kondukto
- name: Upload Nancy Scan Results To Invicti ASPM
id: upload_nancy_results
run: |
kdt scan -p ${{ github.event.repository.name }} -t nancy -b ${{ github.ref_name }} -f results.json
Loading