Skip to content
Draft
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
63 changes: 63 additions & 0 deletions .github/workflows/security-scan.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

name: Security Vulnerability Scan

on:
schedule:
# Weekly on Sundays at 4 AM UTC
- cron: '0 4 * * 0'
workflow_dispatch:

permissions:
contents: read

jobs:
owasp-check:
if: github.repository == 'apache/camel'
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
cache: 'maven'
- name: OWASP Dependency Check
run: ./mvnw -B -Pdependencycheck validate -DskipTests -l owasp-check.log
- name: Upload OWASP Report
uses: actions/upload-artifact@v4
if: always()
with:
name: owasp-dependency-check-report
path: |
**/target/dependency-check-report.html
**/target/dependency-check-report.json
owasp-check.log
retention-days: 30
- name: Job Summary
if: always()
run: |
echo "## OWASP Dependency Check Results" >> $GITHUB_STEP_SUMMARY
echo "" >> $GITHUB_STEP_SUMMARY
echo "The OWASP dependency check has completed." >> $GITHUB_STEP_SUMMARY
echo "Download the artifacts for detailed HTML and JSON reports." >> $GITHUB_STEP_SUMMARY