Skip to content

Commit

Permalink
Add automation for advisories ID sync (#1882)
Browse files Browse the repository at this point in the history
  • Loading branch information
amousset authored Feb 12, 2024
1 parent e1a39a6 commit 13e916a
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/sync-ids.yml
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

0 comments on commit 13e916a

Please sign in to comment.