Skip to content
Open
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
15 changes: 7 additions & 8 deletions .github/workflows/fosstars-report.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "Fosstars (Security)"
name: "Security Rating & Vulnerability Scan"
on:
workflow_dispatch:
schedule:
Expand All @@ -22,6 +22,12 @@ jobs:
- name: "Checkout repository"
uses: actions/checkout@v5

- name: "Run analysis"
uses: ossf/scorecard-action@v2.4.3
with:
results_file: results.sarif
results_format: sarif

- name: "Setup java"
uses: actions/setup-java@v5
with:
Expand Down Expand Up @@ -75,13 +81,6 @@ jobs:
path: ${{ env.CVE_CACHE_DIR }}
key: ${{ env.CVE_CACHE_KEY }}

# This action changes the active branch!
- name: "Fosstars Rating"
uses: SAP/fosstars-rating-core-action@v1.14.0
with:
report-branch: fosstars-report
token: ${{ secrets.GITHUB_TOKEN }}

- name: "Slack Notification"
if: failure()
uses: slackapi/slack-github-action@v2.1.1
Expand Down
15 changes: 15 additions & 0 deletions .github/workflows/weekly-spec-update.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,21 @@ jobs:
TOKEN: ${{ secrets.GH_TOOLS_TOKEN }}


- name: "Get orchestration version"
if: matrix.file == 'orchestration'
run: |
ORCH_VERSION=$(curl --silent --request GET --url "https://github.tools.sap/api/v3/repos/MLF-prod/mlf-gitops-prod/contents/services/llm-orchestration/source/Chart.yaml?ref=aws.eu-central-1.prod-eu/current" -H "Authorization: Bearer $TOKEN" -H "Accept: application/vnd.github.v3.raw" | grep 'version:' | awk '{print $2}')

if [ -z "$ORCH_VERSION" ]; then
echo "Failed to fetch orchestration version"
exit 1
fi
echo "Orchestration version: $ORCH_VERSION"
echo "ORCH_VERSION=$ORCH_VERSION" >> $GITHUB_ENV
env:
TOKEN: ${{ secrets.GH_TOOLS_TOKEN }}


- name: "Trigger spec update"
run: |
BRANCH="main"
Expand Down
Loading