Bajaj Finances - CICD Integration - July 2026
Configure SBOM360 scans for Bajaj Finances GitHub repositories using GitHub Actions.
Scope
Prerequisites
Steps
3
Create the GitHub Action workflow
name: Trigger Lineaje Scan
on:
workflow_dispatch:
inputs:
source_branch:
description: "Branch to scan"
required: true
group:
description: "Lineaje organization group"
required: false
default: "Root Organization"
jobs:
scan:
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.source_branch }}
- name: Lineaje scan
uses: lineaje-actions/lineaje-actions@v1.9.1
with:
scan_type: source
lineaje_cli_token: ${{ secrets.LINEAJE_CLI_TOKEN }}
org_name: ${{ github.event.inputs.group }}
language: node
language_version: "22"
post_scan: scan_only
Last updated