Skip to content

Update flake.lock

Update flake.lock #60

name: 'Update flake.lock'
on:
workflow_dispatch: # allows manual triggering
schedule:
- cron: '0 0 * * 0' # runs weekly on Sunday at 00:00
jobs:
update:
runs-on: ubuntu-latest
steps:
- name: 'Set up Git repository'
uses: actions/checkout@v4
- name: 'Install Nix'
uses: DeterminateSystems/nix-installer-action@v16
- name: 'Update flake.lock'
uses: DeterminateSystems/update-flake-lock@v24
with:
pr-title: 'Update flake.lock'
commit-msg: 'chore(flake): update lock'
pr-labels: |
dependencies
pr-assignees: GaelReyrol
inputs: nixpkgs
token: ${{ secrets.GH_TOKEN_FOR_UPDATES }}