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
104 changes: 104 additions & 0 deletions .github/workflows/bdba.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,104 @@
# Workflow to upload CTFs to Black Duck Binary Analysis (BDBA) for scanning.
# Located in .github repo to be shared across all repositories in the GH org.
name: BDBA Scan

on:
# Trigger for call from other workflows
workflow_call:
inputs:
artifact_id:
description: Identifier for the artifact to download
required: false
type: string
# Secrets have to be passed from the calling workflow
# as for security reasons secrets are not shared between workflows
secrets:
BDBA_API_TOKEN:
required: true
BDBA_URL:
required: true
BDBA_GROUP_ID:
required: true

permissions:
actions: read
contents: read

jobs:
upload-and-scan-ctfs:
runs-on: ubuntu-latest

steps:
# Since workflow is called, checkout code from correct repository
- name: Checkout code
uses: actions/checkout@v4
with:
repository: open-component-model/ocm
ref: main

# Download the CTF that has been uploaded from release workflow
- name: Download CTF
uses: actions/download-artifact@v4
with:
pattern: '${{ inputs.artifact_id }}'
path: ${{ github.workspace }}/gen
# Since OCM cli is required to download CVs from CTF extract binary from CTF
- name: Extract OCM Binary from CTF
id: extract-ocm
run: |
ocm_binary="$(bash ./hack/get_bare_resource_from_ctf.sh \
"ocm.software/ocmcli" \
"" \
"ocmcli" \
"amd64" \
"linux" \
"application/octet-stream" \
${{ github.workspace }}/gen/ctf-aggregated)"

new_loc="${{ github.workspace }}/bin/ocm"
mkdir -p "$(dirname "$new_loc")"
ln -s "$ocm_binary" "$new_loc"
chmod +x "$new_loc"
echo "OCM binary linked to \"$new_loc\""
echo "binary=\"$new_loc\"" >> "$GITHUB_OUTPUT"

# Download CVs from CTF as TAR, loop over all TARs and upload them to BDBA
- name: Upload to Blackduck for CTF
id: blackduck-upload-ctf
run: |
set -e # Exit immediately if any command fails with non-zero status
echo "Download CVs from CTF (creates CommonTransportFormat-ctf root folder)"
echo "Upload single CVs to BDBA"
echo "Large files may take a while to upload. Please be patient."
echo
cd ${{ github.workspace }}/gen/
${{ steps.extract-ocm.outputs.binary }} download cv --type tar ${{ github.workspace }}/gen/ctf-aggregated
# Find all CV tar files within CommonTransportFormat-ctf
find "CommonTransportFormat-${{ github.workspace }}/gen/ctf-aggregated" -type f -print0 | while IFS= read -r -d '' file; do
# Extract the relative path and construct the upload name
relative_path="${file#CommonTransportFormat-${{ github.workspace }}/gen/ctf-aggregated/}"
upload_name="${relative_path%/*}"
upload_name="${upload_name//\//-}"

# Extract the version from the filename
version=$(basename "$file")
version="${version%.tar}"

# Construct the API URL
api_url="${{ secrets.BDBA_URL }}/api/upload/${upload_name}"

# Upload the file using curl
echo "Uploading $upload_name to BDBA"
curl_output=$(curl -sS -X PUT -H "Authorization: Bearer ${{ secrets.BDBA_API_TOKEN }}" -H "Group: ${{ secrets.BDBA_GROUP_ID }}" -H "Version: $version" --data-binary "@$file" "$api_url")

# Check if upload was successful and print results
if [[ $(echo "$curl_output" | jq '.meta.code') == "200" ]]; then
echo "--- Upload successful ---"
echo " filename: $(echo "$curl_output" | jq '.results.filename')"
echo " last_updated: $(echo "$curl_output" | jq '.results.last_updated')"
else
echo "Upload failed with"
echo "$curl_output"
exit 1
fi
done
8 changes: 6 additions & 2 deletions .github/workflows/rotate-bdba-token.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Rotate Black Duck Binary Analysis API token on a monthly basis
# The token is used in the worklfow bdba.yaml and stored as a secret on org level
name: BDBA Token Rotation
# Rotate the Black Duck Binary Analysis API token on a monthly basis

on:
schedule:
# Run on first of every month at 0:37 AM UTC
Expand All @@ -20,8 +22,9 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4

# Generate new API token using the BDBA API
- name: Generate new BDBA API token
id: generate_bdba_token
id: generate-bdba-token
run: |
# Generate new token from the Black Duck Binary Analysis API
# Using the validity period of 3888000 seconds (45 days)
Expand All @@ -46,6 +49,7 @@ jobs:

echo "Successfully generated new BDBA API token"

# Update the organization secret with the new token
- name: Update organization secret
run: |
# Authenticate with the GitHub CLI and set the secret on org level
Expand Down