name: "Deps: Cargo Update"
on:
schedule:
- cron: "0 4 1 * *"
workflow_dispatch:
inputs:
hold_days:
description: "Days to hold before allowing merge"
required: false
default: "7"
type: string
permissions:
contents: write
pull-requests: write
jobs:
cargo-update:
uses: arcuru/actions/.github/workflows/cargo-update.yml@863120f2dbc739f0b9a66c5c01e85b87d7551ac8 # v0.3.1
with:
hold-days: ${{ inputs.hold_days || '7' }}
environment: automation
secrets: inherit