Skip to content

Assigned RUSTSEC-2025-0114 to tandem_http_client, RUSTSEC-2025-0115 t… #1480

Assigned RUSTSEC-2025-0114 to tandem_http_client, RUSTSEC-2025-0115 t…

Assigned RUSTSEC-2025-0114 to tandem_http_client, RUSTSEC-2025-0115 t… #1480

Workflow file for this run

name: Publish Web
on:
push:
branches: main
permissions: {}
jobs:
publish-web:
runs-on: ubuntu-latest
permissions:
contents: write # needed for pushing back to the repo
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
ref: gh-pages
persist-credentials: true # persists the token for git push below
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
id: admin-cache
with:
path: ~/.cargo/bin
key: rustsec-admin-4f949d61d9ed2ef59f8c4448b5ab96e6eef0d6ed
- name: Install rustsec-admin
if: steps.admin-cache.outputs.cache-hit != 'true'
run: cargo install --git https://github.com/rustsec/rustsec rustsec-admin --rev 4f949d61d9ed2ef59f8c4448b5ab96e6eef0d6ed
- run: |
rustsec-admin web .
git config user.name github-actions
git config user.email [email protected]
git add .
git commit -m "Update gh-pages" || true
git push || true