Skip to content

Bump Flake Inputs

Bump Flake Inputs #39

Workflow file for this run

name: Bump Flake Inputs
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
jobs:
update-lockfile:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
fetch-depth: 1
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main
with:
logger: pretty
- name: Update Lockfile
uses: DeterminateSystems/update-flake-lock@main
id: update
with:
pr-title: 'chore(deps): flake inputs'
commit-msg: 'chore(deps): flake inputs'
token: ${{ secrets.GITHUB_TOKEN }}
- name: Merge Changes
run: gh pr merge ${{ steps.update.outputs.pull-request-number }} --squash --delete-branch
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}