Bump Flake Inputs #145
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
name: Bump Flake Inputs | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 1 * * *" | |
jobs: | |
update-lockfile: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Lix | |
uses: DeterminateSystems/nix-installer-action@main | |
with: | |
source-url: https://install.lix.systems/lix/lix-installer-x86_64-linux | |
logger: pretty | |
- name: Nix Magic Cache | |
uses: DeterminateSystems/magic-nix-cache-action@main | |
- name: Update Lockfile | |
run: nix flake update | |
- name: Commit and Push | |
uses: endbug/add-and-commit@v9 | |
with: | |
message: "chore: update flake inputs" |