diff options
| author | Fuwn <[email protected]> | 2021-05-07 17:42:14 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-05-07 17:42:14 -0700 |
| commit | 9bb88ed6abb1b2b7c7b03f906f26dd6d3063ba84 (patch) | |
| tree | 68eaec333ced8ddbd68b8719648c4eb99f93262f | |
| parent | fix(actions): only trigger nix check action on .nix file changes (diff) | |
| download | resume-md-9bb88ed6abb1b2b7c7b03f906f26dd6d3063ba84.tar.xz resume-md-9bb88ed6abb1b2b7c7b03f906f26dd6d3063ba84.zip | |
fix(actions): use correct version of install-nix-action
| -rw-r--r-- | .github/workflows/nix.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/nix.yml b/.github/workflows/nix.yml index 91a9153..88e6f0a 100644 --- a/.github/workflows/nix.yml +++ b/.github/workflows/nix.yml @@ -17,7 +17,7 @@ jobs: - name: Checkout 🛒 uses: actions/checkout@v2 - name: Toolchain 🧰 - uses: cachix/[email protected] + uses: cachix/install-nix-action@v13 with: nix_path: nixpkgs=channel:nixos-20.09 - run: nix-build |