Files
advisory-db/.github/workflows/export-osv.yml
Sergey "Shnatsel" Davidoff d6377e0188 Fix CI always using an outdated version of rustsec-admin (#1660)
* Fix CI always using an outdated version of rustsec-admin

* Bump the cache key in tandem with version bump

* Dummy commit to make sure CI works on subsequent runs

* Check that the required version is installed, reinstall if not

* Fix shell syntax

* Dummy commit to make sure CI works on subsequent runs
2023-03-24 14:38:59 +00:00

32 lines
872 B
YAML

name: Export to OSV format
on:
push:
branches: main
jobs:
publish-web:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: osv
- uses: actions/cache@v3
with:
path: ~/.cargo/bin
key: rustsec-admin-v0.8.5
- run: |
VERSION="0.8.5"
if ! ( rustsec-admin --version | grep -q "$VERSION" ); then
cargo install rustsec-admin --force --vers "$VERSION"
fi
mkdir -p crates
rustsec-admin osv crates
# FIXME: hack to avoid committing advisories without an ID
rm -f crates/RUSTSEC-0000-0000.json
git config user.name github-actions
git config user.email github-actions@github.com
git add .
git commit -m "Update OSV exported data" || true
git push || true