Skip to content

Commit

Permalink
Release 2025.01.1 (#2)
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Beale <[email protected]>
Co-authored-by: Cory Cornelius <[email protected]>
  • Loading branch information
michaelbeale-IL and dxoigmn authored Jan 14, 2025
1 parent 7097e3e commit 05e0465
Show file tree
Hide file tree
Showing 4 changed files with 54 additions and 4 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/scorecard.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
# This workflow uses actions that are not certified by GitHub. They are provided
# by a third-party and are governed by separate terms of service, privacy
# policy, and support documentation.

name: Scorecard supply-chain security
on:
branch_protection_rule:

schedule:
- cron: '44 15 * * 1'
pull_request:
branches: [ "main" ]
workflow_dispatch:

# Declare default permissions as read only.
permissions: read-all

jobs:
analysis:
name: Scorecard analysis
runs-on: ubuntu-latest
permissions:
# Needed to upload the results to code-scanning dashboard.
security-events: write
# Needed to publish results and get a badge (see publish_results below).
id-token: write

steps:
- name: "Checkout code"
uses: actions/[email protected]
with:
persist-credentials: false
ref: main

- name: "Run analysis"
uses: ossf/scorecard-action@62b2cac7ed8198b15735ed49ab1e5cf35480ba46 # v2.4.0
with:
results_file: results.sarif
results_format: sarif
publish_results: true

- name: "Upload artifact"
uses: actions/[email protected]
with:
name: SARIF file
path: results.sarif
retention-days: 5
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
<img src="assets/llmart.png" alt="Large Language Model adversarial robustness toolkit" width="300" />

## Large Language Model adversarial robustness toolkit
![OpenSSF Scorecard](https://img.shields.io/ossf-scorecard/github.com/IntelLabs/LLMart)
![GitHub License](https://img.shields.io/github/license/IntelLabs/LLMart)
![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)

: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)

Expand Down
6 changes: 3 additions & 3 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "llmart"
version = "2025.01"
version = "2025.01.1"
description = "LLMart"
authors = []
readme = "README.md"
Expand Down

0 comments on commit 05e0465

Please sign in to comment.