build(deps): bump cachix/install-nix-action from 23 to 24 (#72) #1120
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: Nix | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
workflow_dispatch: | |
schedule: | |
# Run once per day | |
- cron: '0 0 * * *' | |
jobs: | |
build: | |
strategy: | |
# Keep building the other channels if one fails | |
fail-fast: false | |
matrix: | |
channel: | |
- nixos-unstable | |
- nixos-23.05 | |
- nixos-23.11 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@v24 | |
- run: nix-shell --run ./ci.sh | |
env: | |
CI_REGISTRY_AUTH: '${{ secrets.REGISTRY_AUTH }}' | |
NIXPKGS_CHANNEL: '${{ matrix.channel }}' |