Skip to content

Update flake.lock

Update flake.lock #54

Workflow file for this run

# SPDX-FileCopyrightText: 2024 Ryan Cao <hello@ryanccn.dev>
#
# SPDX-License-Identifier: AGPL-3.0-only
name: Update flake.lock
on:
schedule:
- cron: "0 0 * * 0"
workflow_dispatch:
jobs:
update:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main
- name: Update lockfile
uses: DeterminateSystems/update-flake-lock@main
with:
commit-msg: "chore(flake): update inputs"
pr-title: "chore(flake): update inputs"
token: ${{ github.token }}