Skip to content

Commit 05e0465

Browse files
Release 2025.01.1 (#2)
Signed-off-by: Michael Beale <[email protected]> Co-authored-by: Cory Cornelius <[email protected]>
1 parent 7097e3e commit 05e0465

File tree

4 files changed

+54
-4
lines changed

4 files changed

+54
-4
lines changed

.github/workflows/scorecard.yml

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# This workflow uses actions that are not certified by GitHub. They are provided
2+
# by a third-party and are governed by separate terms of service, privacy
3+
# policy, and support documentation.
4+
5+
name: Scorecard supply-chain security
6+
on:
7+
branch_protection_rule:
8+
9+
schedule:
10+
- cron: '44 15 * * 1'
11+
pull_request:
12+
branches: [ "main" ]
13+
workflow_dispatch:
14+
15+
# Declare default permissions as read only.
16+
permissions: read-all
17+
18+
jobs:
19+
analysis:
20+
name: Scorecard analysis
21+
runs-on: ubuntu-latest
22+
permissions:
23+
# Needed to upload the results to code-scanning dashboard.
24+
security-events: write
25+
# Needed to publish results and get a badge (see publish_results below).
26+
id-token: write
27+
28+
steps:
29+
- name: "Checkout code"
30+
uses: actions/[email protected]
31+
with:
32+
persist-credentials: false
33+
ref: main
34+
35+
- name: "Run analysis"
36+
uses: ossf/scorecard-action@62b2cac7ed8198b15735ed49ab1e5cf35480ba46 # v2.4.0
37+
with:
38+
results_file: results.sarif
39+
results_format: sarif
40+
publish_results: true
41+
42+
- name: "Upload artifact"
43+
uses: actions/[email protected]
44+
with:
45+
name: SARIF file
46+
path: results.sarif
47+
retention-days: 5

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
<img src="assets/llmart.png" alt="Large Language Model adversarial robustness toolkit" width="300" />
33

44
## Large Language Model adversarial robustness toolkit
5+
![OpenSSF Scorecard](https://img.shields.io/ossf-scorecard/github.com/IntelLabs/LLMart)
6+
![GitHub License](https://img.shields.io/github/license/IntelLabs/LLMart)
7+
![Python Version from PEP 621 TOML](https://img.shields.io/python/required-version-toml?tomlFilePath=https%3A%2F%2Fraw.githubusercontent.com%2FIntelLabs%2FLLMart%2Frefs%2Fheads%2Fmain%2Fpyproject.toml)
58

69
:rocket: [Quick start](#rocket-quick-start):briefcase: [Project Overview](#briefcase-project-overview):robot: [Models](#robot-models):clipboard: [Datasets](#clipboard-datasets):chart_with_downwards_trend: [Optimizers and schedulers](#chart_with_downwards_trend-optimizers-and-schedulers):pencil2: [Citation](#pencil2-citation)
710

poetry.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "llmart"
3-
version = "2025.01"
3+
version = "2025.01.1"
44
description = "LLMart"
55
authors = []
66
readme = "README.md"

0 commit comments

Comments
 (0)