Skip to content

Update inputs

Update inputs #877

Workflow file for this run

name: Update inputs
on:
workflow_dispatch:
schedule:
- cron: 0 */6 * * *
jobs:
update:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main
- name: Update flake.lock
uses: DeterminateSystems/update-flake-lock@main
with:
commit-msg: "chore(deps): update flake.lock"
pr-title: "Update flake.lock"
pr-labels: |
dependencies
merge-queue
automated
build-and-test:
name: Build and test
uses: ./.github/workflows/ci.yaml
needs: update
secrets:
CACHIX_AUTH_TOKEN: ${{ secrets.CACHIX_AUTH_TOKEN }}