summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorSeth Flynn <[email protected]>2025-03-30 21:57:18 -0400
committerSeth Flynn <[email protected]>2025-03-30 22:08:05 -0400
commitf13e56b26633e9da9896da36a75becc850480bc8 (patch)
tree660bc6bed3ef8d478329ea030fae38fb62a64b51 /.github/workflows
parent76751893a499bc2a0cde97ad8a392a03912477ab (diff)
ci: DeterminateSystems/nix-installer-action -> cachix/install-nix-actionHEADmain
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/ci.yaml9
-rw-r--r--.github/workflows/clippy.yaml5
-rw-r--r--.github/workflows/docker.yaml5
-rw-r--r--.github/workflows/update-flake.yaml2
4 files changed, 6 insertions, 15 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index de120c0..4e2e48d 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -53,10 +53,7 @@ jobs:
uses: actions/checkout@v4
- name: Install Nix
- uses: DeterminateSystems/nix-installer-action@v14
-
- - name: Setup Nix cache
- uses: DeterminateSystems/magic-nix-cache-action@v8
+ uses: cachix/install-nix-action@v31
- name: Run build
run: nix build --print-build-logs --show-trace
@@ -71,11 +68,11 @@ jobs:
uses: actions/checkout@v4
- name: Install Nix
- uses: DeterminateSystems/nix-installer-action@v14
+ uses: cachix/install-nix-action@v31
- name: Run check
run: |
- nix fmt -- --fail-on-change
+ find . -type f -name '*.nix' -exec nix fmt -- --fail-on-change {} +
release-gate:
name: CI Release gate
diff --git a/.github/workflows/clippy.yaml b/.github/workflows/clippy.yaml
index 31929df..e83bd8e 100644
--- a/.github/workflows/clippy.yaml
+++ b/.github/workflows/clippy.yaml
@@ -36,10 +36,7 @@ jobs:
uses: actions/checkout@v4
- name: Install Nix
- uses: DeterminateSystems/nix-installer-action@v14
-
- - name: Setup Nix cache
- uses: DeterminateSystems/magic-nix-cache-action@v8
+ uses: cachix/install-nix-action@v31
- name: Run Clippy
id: clippy-run
diff --git a/.github/workflows/docker.yaml b/.github/workflows/docker.yaml
index a9a76d1..a403370 100644
--- a/.github/workflows/docker.yaml
+++ b/.github/workflows/docker.yaml
@@ -38,10 +38,7 @@ jobs:
uses: actions/checkout@v4
- name: Install Nix
- uses: DeterminateSystems/nix-installer-action@v14
-
- - name: Setup Nix cache
- uses: DeterminateSystems/magic-nix-cache-action@v8
+ uses: cachix/install-nix-action@v31
- name: Build Docker image
id: build
diff --git a/.github/workflows/update-flake.yaml b/.github/workflows/update-flake.yaml
index 4e33720..839b2a1 100644
--- a/.github/workflows/update-flake.yaml
+++ b/.github/workflows/update-flake.yaml
@@ -20,7 +20,7 @@ jobs:
uses: actions/checkout@v4
- name: Install Nix
- uses: DeterminateSystems/nix-installer-action@v14
+ uses: cachix/install-nix-action@v31
- name: Update flake.lock & make PR
uses: DeterminateSystems/update-flake-lock@v24