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
53 changes: 53 additions & 0 deletions .pipelines/security-scans.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
trigger: none
pr: none

schedules:
- cron: "0 11 * * 1"
displayName: "Every Monday at 1:00 PM"
branches:
include:
- main
always: true

resources:
repositories:
- repository: codeql
type: github
name: UiPath/AzurePipelinesTemplates
ref: refs/tags/uipath.security.codeql.1.9.5
endpoint: UiPath
- repository: fossa
type: github
name: UiPath/AzurePipelinesTemplates
ref: refs/tags/uipath.security.fossa.3.0.13
endpoint: UiPath

variables:
- template: ./variables.yml

stages:
- stage: FOSSA
dependsOn: []
jobs:
- job: FOSSA
steps:
- template: Security/fossa.steps.yml@fossa
parameters:
OS: linux
azureSubscription: $(azureInternalProductionEaConnectionName)
FOSSAFlags: '--project "UiPath MCP Python SDK" --branch "$(Build.SourceBranch)" --revision "$(Build.SourceVersion)-$(Build.BuildId)"'
FOSSATestFlags: '--project "UiPath MCP Python SDK" --revision "$(Build.SourceVersion)-$(Build.BuildId)"'
${{ if contains(variables['Build.SourceBranch'], 'main') }}:
publishSecurityReports: true


- stage: CODEQL
dependsOn: []
jobs:
- job: CODEQL
steps:
- template: Security/codeql.interpreted.steps.yml@codeql
parameters:
os: 'linux64'
language: 'python'
azureSubscription: $(azureInternalProductionEaConnectionName)
2 changes: 2 additions & 0 deletions .pipelines/variables.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
variables:
azureInternalProductionEaConnectionName: Internal-Production-EA
Loading