-
Notifications
You must be signed in to change notification settings - Fork 381
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add automation for advisories ID sync (#1882)
- Loading branch information
Showing
1 changed file
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: Synchronize IDs | ||
|
||
on: | ||
schedule: | ||
# daily run on default "main" branch | ||
- cron: '30 1 * * *' | ||
|
||
jobs: | ||
sync-ids: | ||
name: Synchronize IDs | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Cache cargo bin | ||
uses: actions/cache@v4 | ||
with: | ||
path: ~/.cargo/bin | ||
key: rustsec-admin-v0.8.9 | ||
|
||
- name: Install rustsec-admin | ||
run: | | ||
VERSION="0.8.9" | ||
if ! ( rustsec-admin --version | grep -q "$VERSION" ); then | ||
cargo install rustsec-admin --force --vers "$VERSION" | ||
fi | ||
- name: Synchronize IDs | ||
id: sync-ids | ||
run: | | ||
mkdir -p /tmp/osv | ||
curl --silent --output /tmp/osv/advisories.zip https://osv-vulnerabilities.storage.googleapis.com/crates.io/all.zip | ||
unzip -d /tmp/osv -q /tmp/osv/advisories.zip | ||
rustsec-admin sync --osv /tmp/osv/ . | ||
message="Synchronize IDs ($(date +%F))" | ||
echo "commit_message=${message}" >> $GITHUB_OUTPUT | ||
- name: Create pull request | ||
uses: peter-evans/create-pull-request@v6 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
commit-message: ${{ steps.assign.outputs.commit_message }} | ||
title: ${{ steps.assign.outputs.commit_message }} | ||
branch: sync-ids |