Skip to content

Bump Flake Inputs

Bump Flake Inputs #4

Workflow file for this run

name: Bump Flake Inputs
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * *" # daily
jobs:
bump-flake:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main
- name: update
uses: DeterminateSystems/update-flake-lock@main
with:
pr-title: "CI: bump flake inputs"
- name: merge
run: |
gh pr merge ${{ steps.update.outputs.pull-request-number }} --squash --delete-branch
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}