Skip to content

Assigned RUSTSEC-2025-0017 to trust-dns-proto #1317

Assigned RUSTSEC-2025-0017 to trust-dns-proto

Assigned RUSTSEC-2025-0017 to trust-dns-proto #1317

Workflow file for this run

name: Publish Web
on:
push:
branches: main
jobs:
publish-web:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: gh-pages
- uses: actions/cache@v4
with:
path: ~/.cargo/bin
key: rustsec-admin-v0.8.8
- run: |
VERSION="0.8.8"
if ! ( rustsec-admin --version | grep -q "$VERSION" ); then
cargo install rustsec-admin --force --vers "$VERSION"
fi
rustsec-admin web .
git config user.name github-actions
git config user.email github-actions@github.com
git add .
git commit -m "Update gh-pages" || true
git push || true