build(deps): bump DeterminateSystems/nix-installer-action from 11 to 12 in /.github/workflows #19
Workflow file for this run
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: Check | |
on: | |
push: | |
paths: | |
- '**.nix' | |
- flake.lock | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
nix-flake: | |
name: Nix flake | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
- name: Install Nix | |
uses: DeterminateSystems/nix-installer-action@v12 | |
with: | |
extra-conf: | | |
log-lines = 500 | |
- name: Set up Magic Nix Cache | |
uses: DeterminateSystems/magic-nix-cache-action@v6 | |
- name: Check Nix flake inputs | |
uses: DeterminateSystems/flake-checker-action@v7 | |
with: | |
fail-mode: true | |
check-outdated: false | |
- name: Check Nix flake outputs | |
run: nix flake check -v --all-systems |