Skip to content

Update Nix flake inputs #13

Update Nix flake inputs

Update Nix flake inputs #13

Workflow file for this run

name: Update Nix flake inputs
on:
workflow_dispatch:
schedule:
- cron: "50 1 * * 1" # At 01:50 every Monday
jobs:
update-inputs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
with:
submodules: recursive
- uses: DeterminateSystems/nix-installer-action@b92f66560d6f97d6576405a7bae901ab57e72b6a
- uses: DeterminateSystems/magic-nix-cache-action@a76a83091cd8728db8c37312dbdd0eeb1177a6c0
- run: nix flake update
- name: Commit and push
run: |
git config user.name 'github-actions[bot]'
git config --global user.email '41898282+github-actions[bot]@users.noreply.github.com'
git commit -am "chore: update inputs"
git push