Skip to content

Commit 22e8d71

Browse files
authored
Merge pull request #439 from DeterminateSystems/determinate-nix-action
Switch to determinate-nix-action
2 parents 11cf560 + 53021c5 commit 22e8d71

File tree

3 files changed

+12
-18
lines changed

3 files changed

+12
-18
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,7 @@ jobs:
2727
path: .lycheecache
2828
key: lychee-link-check
2929
restore-keys: cache-lychee-
30-
- uses: DeterminateSystems/nix-installer-action@main
31-
with:
32-
determinate: true
30+
- uses: DeterminateSystems/determinate-nix-action@main
3331
- uses: DeterminateSystems/flakehub-cache-action@main
3432
- name: Run Nix CI suite
3533
run: nix develop --command ci
@@ -65,9 +63,7 @@ jobs:
6563
runner: UbuntuLatest32Cores128G
6664
steps:
6765
- uses: actions/checkout@v4
68-
- uses: DeterminateSystems/nix-installer-action@main
69-
with:
70-
determinate: true
66+
- uses: DeterminateSystems/determinate-nix-action@main
7167
- uses: DeterminateSystems/flakehub-cache-action@main
7268

7369
- name: Build example dev shells
@@ -90,9 +86,7 @@ jobs:
9086
runner: UbuntuLatest32Cores128G
9187
steps:
9288
- uses: actions/checkout@v4
93-
- uses: DeterminateSystems/nix-installer-action@main
94-
with:
95-
determinate: true
89+
- uses: DeterminateSystems/determinate-nix-action@main
9690
- uses: DeterminateSystems/flakehub-cache-action@main
9791

9892
- name: Build packages in pkg templates

.github/workflows/flakehub-cache.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runner: UbuntuLatest32Cores128G
2222
steps:
2323
- uses: actions/checkout@v4
24-
- uses: DeterminateSystems/nix-installer-action@main
24+
- uses: DeterminateSystems/determinate-nix-action@main
2525
- uses: DeterminateSystems/flakehub-cache-action@main
2626
- name: Build dev shell for ${{ matrix.systems.nix-system }} on ${{ matrix.systems.runner }}
2727
run: |

.github/workflows/flakehub-publish-rolling.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@ name: "Publish every Git push to main to FlakeHub"
33
on:
44
push:
55
branches:
6-
- "main"
6+
- main
77

88
jobs:
99
flakehub-publish:
10-
runs-on: "UbuntuLatest32Cores128G"
10+
runs-on: UbuntuLatest32Cores128G
1111
permissions:
12-
id-token: "write"
13-
contents: "read"
12+
id-token: write
13+
contents: read
1414
steps:
15-
- uses: "actions/checkout@v4"
16-
- uses: "DeterminateSystems/nix-installer-action@main"
17-
- uses: "DeterminateSystems/flakehub-push@main"
15+
- uses: actions/checkout@v4
16+
- uses: DeterminateSystems/determinate-nix-action@main
17+
- uses: DeterminateSystems/flakehub-push@main
1818
with:
1919
rolling: true
20-
visibility: "public"
20+
visibility: public

0 commit comments

Comments
 (0)