Skip to content

Commit d4fa11e

Browse files
committed
ci: switch to nixbuild/nix-quick-install-action
1 parent 07f6b23 commit d4fa11e

File tree

7 files changed

+16
-7
lines changed

7 files changed

+16
-7
lines changed

.github/workflows/darwin-build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ jobs:
1717
with:
1818
fetch-depth: 1
1919
persist-credentials: false
20-
- uses: DeterminateSystems/nix-installer-action@v21
20+
- name: Install Nix
21+
uses: nixbuild/nix-quick-install-action@master
2122
- name: Magic Nix Cache(Use Github Actions Cache)
2223
uses: DeterminateSystems/magic-nix-cache-action@main
2324
- name: Configure to use personal binary cache @ Cachix

.github/workflows/flake-check.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ jobs:
1717
with:
1818
fetch-depth: 1
1919
persist-credentials: false
20-
- uses: DeterminateSystems/nix-installer-action@v21
20+
- name: Install Nix
21+
uses: nixbuild/nix-quick-install-action@master
2122
- name: Magic Nix Cache(Use Github Actions Cache)
2223
uses: DeterminateSystems/magic-nix-cache-action@main
2324
- name: Configure to use personal binary cache @ Cachix

.github/workflows/flake-lock-update.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ jobs:
1717
with:
1818
fetch-depth: 1
1919
persist-credentials: false
20-
- uses: DeterminateSystems/nix-installer-action@v21
20+
- name: Install Nix
21+
uses: nixbuild/nix-quick-install-action@master
2122
- name: Magic Nix Cache(Use Github Actions Cache)
2223
uses: DeterminateSystems/magic-nix-cache-action@main
2324
- name: Configure to use personal binary cache @ Cachix

.github/workflows/home-build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ jobs:
1717
with:
1818
fetch-depth: 1
1919
persist-credentials: true
20-
- uses: DeterminateSystems/nix-installer-action@v21
20+
- name: Install Nix
21+
uses: nixbuild/nix-quick-install-action@master
2122
- name: Magic Nix Cache(Use Github Actions Cache)
2223
uses: DeterminateSystems/magic-nix-cache-action@main
2324
- name: Configure to use personal binary cache @ Cachix

.github/workflows/nixos-build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ jobs:
1717
with:
1818
fetch-depth: 1
1919
persist-credentials: false
20-
- uses: DeterminateSystems/nix-installer-action@v21
20+
- name: Install Nix
21+
uses: nixbuild/nix-quick-install-action@master
2122
- name: Magic Nix Cache(Use Github Actions Cache)
2223
uses: DeterminateSystems/magic-nix-cache-action@main
2324
- name: Configure to use personal binary cache @ Cachix

.github/workflows/topology-build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ jobs:
1717
with:
1818
fetch-depth: 1
1919
persist-credentials: true
20-
- uses: DeterminateSystems/nix-installer-action@v21
20+
- name: Install Nix
21+
uses: nixbuild/nix-quick-install-action@master
2122
- name: Magic Nix Cache(Use Github Actions Cache)
2223
uses: DeterminateSystems/magic-nix-cache-action@main
2324
- name: Configure to use personal binary cache @ Cachix

flake/actions/default.nix

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,10 @@
4141
id-token = "write";
4242
};
4343
common-post-actions = [
44-
inputs.actions-nix.lib.steps.DeterminateSystemsNixInstallerAction
44+
{
45+
name = "Install Nix";
46+
uses = "nixbuild/nix-quick-install-action@master";
47+
}
4548
{
4649
name = "Magic Nix Cache(Use Github Actions Cache)";
4750
uses = "DeterminateSystems/magic-nix-cache-action@main";

0 commit comments

Comments
 (0)