ci: update install-nix-action to v12
This fixes the `Unable to process command '::add-path::/nix/var/nix/profiles/per-user/runner/profile/bin' successfully.` errors (this was deprecated by GitHub). Also fix alignment, to ease copy-pasting.
This commit is contained in:
parent
d39605727d
commit
6c13d402fb
12
.github/workflows/ci.yml
vendored
12
.github/workflows/ci.yml
vendored
|
@ -11,7 +11,9 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Install Nix
|
||||
uses: cachix/install-nix-action@v9
|
||||
uses: cachix/install-nix-action@v12
|
||||
with:
|
||||
nix_path: nixpkgs=channel:nixos-unstable
|
||||
- name: Cargo Pedantry
|
||||
run: nix-shell --run checkPhase -A mozilla-rust-overlay
|
||||
|
||||
|
@ -20,7 +22,9 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Install Nix
|
||||
uses: cachix/install-nix-action@v9
|
||||
uses: cachix/install-nix-action@v12
|
||||
with:
|
||||
nix_path: nixpkgs=channel:nixos-unstable
|
||||
- name: Set up git
|
||||
run: |
|
||||
git config --global user.email "ofborg@example.com"
|
||||
|
@ -33,6 +37,8 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Install Nix
|
||||
uses: cachix/install-nix-action@v9
|
||||
uses: cachix/install-nix-action@v12
|
||||
with:
|
||||
nix_path: nixpkgs=channel:nixos-unstable
|
||||
- name: nix-build
|
||||
run: nix-build -A ofborg.rs -A ofborg.php
|
||||
|
|
Loading…
Reference in a new issue