Scenario 1 #118
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is a basic workflow to help you get started with Actions | |
name: Xygeni CI/CD Security Scan | |
# Controls when the workflow will run | |
on: | |
push: | |
branches: [ "main" ] | |
# Triggers the workflow on pull request events for the "main" branch | |
pull_request_target: | |
branches: [ "main" ] | |
# Allows you to run this workflow manually from the Actions tab sd | |
workflow_dispatch: | |
env: | |
XY_USERNAME: ${{ secrets.XY_USERNAME_PRO }} | |
XY_PASSWORD: ${{ secrets.XY_PASSWORD_PRO }} | |
XY_URL: ${{ secrets.XY_URL_PRO }} | |
XY_PRJ_NAME: LGV-GH-${{ github.event.repository.name }} | |
jobs: | |
# This workflow contains a single job called "xygeni_security_scan" | |
xygeni_cicd_scan: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
# ref: "refs/pull/${{ github.event.number }}/merge" | |
# ref: ${{ github.event.pull_request.head.sha }} | |
steps: | |
- name: Cat event | |
run: echo EVENT ${{ github.event_name }} | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v4 | |
name: Checking out PR code | |
if: ${{ github.event_name == 'pull_request_target' }} | |
with: | |
# Number of commits to fetch. 0 indicates all history for all branches and tags. | |
# Default: 1 | |
fetch-depth: '0' | |
# This is to get the PR code instead of the repo code | |
ref: ${{ github.event.pull_request.head.sha }} | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v4 | |
name: Checking out main code | |
if: ${{ github.event_name == 'push' || github.event_name == 'workflow_dispatch' }} | |
with: | |
# Number of commits to fetch. 0 indicates all history for all branches and tags. | |
# Default: 1 | |
fetch-depth: '0' | |
# Runs a single command using the runners shell | |
- name: Git Log | |
run: git log | |
# Runs a single command using the runners shell | |
- name: Cat pr.yml | |
run: cat README.md | |
# Runs a set of commands using the runners shell | |
- name: Download Xygeni Scanner | |
run: | | |
echo Downloading Xygeni Scanner .... | |
curl -L https://get.xygeni.io/latest/scanner/install.sh | /bin/bash -s -- -u $XY_USERNAME -p $XY_PASSWORD -s $XY_URL -d ${GITHUB_WORKSPACE}/scanner | |
cat ${GITHUB_WORKSPACE}/scanner/conf/codetampering/ccm/workflow_modification.yml | grep changeTypesToConsider | |
sed -i 's/changeTypesToConsider: M/changeTypesToConsider: AM/g' ${GITHUB_WORKSPACE}/scanner/conf/codetampering/ccm/workflow_modification.yml | |
cat ${GITHUB_WORKSPACE}/scanner/conf/codetampering/ccm/workflow_modification.yml | grep changeTypesToConsider | |
# Runs a set of commands using the runners shell | |
- name: Execution Xygeni Scanner (vuln) | |
run: | | |
echo Executing Xygeni scan .... | |
#${GITHUB_WORKSPACE}/scanner/xygeni scan --never-fail --run="inventory,misconf,codetamper" --no-conf-download -n ${{ env.XY_PRJ_NAME }} --dir ${GITHUB_WORKSPACE} -e **/scanner/** | |
env: | |
GITHUB_PAT: ${{ secrets.GH_PAT }} |