Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
version: 2
updates:
- package-ecosystem: cargo
directory: /
schedule:
interval: monthly
open-pull-requests-limit: 10
commit-message:
prefix: "chore(deps)"
groups:
cargo-minor-and-patch:
update-types:
- minor
- patch

- package-ecosystem: github-actions
directory: /
schedule:
interval: monthly
open-pull-requests-limit: 5
commit-message:
prefix: "chore(ci)"
groups:
actions-all:
update-types:
- major
- minor
- patch
40 changes: 40 additions & 0 deletions .github/workflows/security.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Security

on:
push:
branches: [main, master]
pull_request:
workflow_dispatch:

jobs:
cargo-audit:
name: Cargo Audit
runs-on: ubuntu-latest
permissions:
checks: write
contents: read
steps:
- uses: actions/checkout@v6
- uses: rustsec/audit-check@v2.0.0
with:
token: ${{ secrets.GITHUB_TOKEN }}

cargo-deny:
name: Cargo Deny
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Capture github.com host keys
id: keyscan
run: |
{
echo 'known-hosts<<KNOWN_HOSTS_EOF'
ssh-keyscan github.com
echo KNOWN_HOSTS_EOF
} >> "$GITHUB_OUTPUT"
- uses: EmbarkStudios/cargo-deny-action@v2
with:
command: check advisories
ssh-key: ${{ secrets.BOT_SSH_PRIVATE_KEY }}
ssh-known-hosts: ${{ steps.keyscan.outputs.known-hosts }}
use-git-cli: true
Loading