Update flake.lock #54
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 }} |