Bump cachix/install-nix-action from 20 to 30 #76
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: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
update: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install nixFlake | |
uses: cachix/install-nix-action@v30 | |
with: | |
install_url: https://github.com/numtide/nix-unstable-installer/releases/latest/download/install | |
extra_nix_config: | | |
experimental-features = nix-command flakes | |
- uses: cachix/cachix-action@v12 | |
with: | |
name: nixos-cn | |
signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}' | |
- name: Nix flake check | |
run: nix flake check |