From 0637893efcccdc1e077b2f26ee7ea685155e9fe1 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Wed, 21 Jan 2026 12:07:36 -0500 Subject: [PATCH 1/5] Update the action generator: summarize is a new field --- tools/generate.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/generate.py b/tools/generate.py index fcf01a1..e9e41b2 100644 --- a/tools/generate.py +++ b/tools/generate.py @@ -59,6 +59,7 @@ keep_inputs = [ "github-server-url", "github-token", "trust-runner-user", + "summarize", # Advanced run-time environment options "force-no-systemd", "init", From 89ab342bd48ff7318caf8d39d6a330c7b1df8f2f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 21 Jan 2026 17:15:34 +0000 Subject: [PATCH 2/5] Release v3.15.2 (#49) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Prepare release v3.15.2 * Update the state.json for v3.15.2 * Update README.md and action.yml for v3.15.2 * flake.lock: Update Flake lock file updates: • Updated input 'nixpkgs': 'https://api.flakehub.com/f/pinned/NixOS/nixpkgs/0.1.914755%2Brev-a6531044f6d0bef691ea18d4d4ce44d0daa6e816/019b4613-7276-7c80-8e57-953e4698fb6e/source.tar.gz' (2025-12-21) → 'https://api.flakehub.com/f/pinned/NixOS/nixpkgs/0.1.930839%2Brev-80e4adbcf8992d3fd27ad4964fbb84907f9478b0/019bdece-8709-77ea-a1d6-9d410df27131/source.tar.gz' (2026-01-20) --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- README.md | 9 +++++---- action.yml | 9 +++++++-- flake.lock | 10 +++++----- tools/state.json | 4 ++-- 4 files changed, 19 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index afad7a4..64b5ced 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ jobs: contents: read steps: - uses: actions/checkout@v6.0.1 - - uses: DeterminateSystems/determinate-nix-action@main # or v3.15.1 to pin to a release + - uses: DeterminateSystems/determinate-nix-action@main # or v3.15.2 to pin to a release - run: nix build . ``` @@ -67,10 +67,10 @@ jobs: Unlike `DeterminateSystems/nix-installer-action`, we fully support explicit version pinning for maximum consistency. This Action is **automatically tagged** for every Determinate Nix release, giving you complete control over your CI environment: -📍 Pinning to `DeterminateSystems/determinate-nix-action@v3.15.1` guarantees: +📍 Pinning to `DeterminateSystems/determinate-nix-action@v3.15.2` guarantees: - Same `nix-installer-action` revision every time -- Consistent Determinate Nix v3.15.1 installation +- Consistent Determinate Nix v3.15.2 installation - Reproducible CI workflows, even years later ✨ Using `@main` instead? You'll: @@ -102,6 +102,7 @@ updates: | `github-server-url` | The URL for the GitHub server, to use with the `github-token` token. Defaults to the current GitHub server, supporting GitHub Enterprise Server automatically. Only change this value if the provided `github-token` is for a different GitHub server than the current server. | | `${{ github.server_url }}` | | `github-token` | A GitHub token for making authenticated requests (which have a higher rate-limit quota than unauthenticated requests) | | `${{ github.token }}` | | `trust-runner-user` | Whether to make the runner user trusted by the Nix daemon | | `true` | +| `summarize` | Whether to add a build summary and timeline chart to the GitHub job summary | | `true` | | `force-no-systemd` | Force using other methods than systemd to launch the daemon. This setting is automatically enabled when necessary. | | `false` | | `init` | The init system to configure, requires `planner: linux-multi` (allowing the choice between `none` or `systemd`) | | | | `kvm` | Automatically configure the GitHub Actions Runner for NixOS test supports, if the host supports it. | | `true` | @@ -112,7 +113,7 @@ updates: | `source-branch` | The branch of `nix-installer` to use (conflicts with `source-tag`, `source-revision`, `source-pr`) | | | | `source-pr` | The PR of `nix-installer` to use (conflicts with `source-tag`, `source-revision`, `source-branch`) | | | | `source-revision` | The revision of `nix-installer` to use (conflicts with `source-tag`, `source-branch`, `source-pr`) | | | -| `source-tag` | The tag of `nix-installer` to use (conflicts with `source-revision`, `source-branch`, `source-pr`) | | `v3.15.1` | +| `source-tag` | The tag of `nix-installer` to use (conflicts with `source-revision`, `source-branch`, `source-pr`) | | `v3.15.2` | | `source-url` | A URL pointing to a `nix-installer` executable | | | | `backtrace` | The setting for `RUST_BACKTRACE` (see https://doc.rust-lang.org/std/backtrace/index.html#environment-variables) | | | | `diagnostic-endpoint` | Diagnostic endpoint url where the installer sends data to. To disable set this to an empty string. | | `-` | diff --git a/action.yml b/action.yml index ad4aaa3..80522fc 100644 --- a/action.yml +++ b/action.yml @@ -22,6 +22,10 @@ "description": "Whether to make the runner user trusted by the Nix daemon", "default": true }, + "summarize": { + "description": "Whether to add a build summary and timeline chart to the GitHub job summary", + "default": true + }, "force-no-systemd": { "description": "Force using other methods than systemd to launch the daemon. This setting is automatically enabled when necessary.", "required": false, @@ -68,7 +72,7 @@ "source-tag": { "description": "The tag of `nix-installer` to use (conflicts with `source-revision`, `source-branch`, `source-pr`)", "required": false, - "default": "v3.15.1" + "default": "v3.15.2" }, "source-url": { "description": "A URL pointing to a `nix-installer` executable", @@ -101,12 +105,13 @@ "using": "composite", "steps": [ { - "uses": "DeterminateSystems/nix-installer-action@ab0a9732c6464e5bb81efb82a2103c7d98f0946f", + "uses": "DeterminateSystems/nix-installer-action@58e64ed13a4f3f90ba0cba819752b6df4b548da8", "with": { "extra-conf": "${{ inputs.extra-conf }}", "github-server-url": "${{ inputs.github-server-url }}", "github-token": "${{ inputs.github-token }}", "trust-runner-user": "${{ inputs.trust-runner-user }}", + "summarize": "${{ inputs.summarize }}", "force-no-systemd": "${{ inputs.force-no-systemd }}", "init": "${{ inputs.init }}", "kvm": "${{ inputs.kvm }}", diff --git a/flake.lock b/flake.lock index 9937896..9e49ebc 100644 --- a/flake.lock +++ b/flake.lock @@ -2,12 +2,12 @@ "nodes": { "nixpkgs": { "locked": { - "lastModified": 1766309749, - "narHash": "sha256-3xY8CZ4rSnQ0NqGhMKAy5vgC+2IVK0NoVEzDoOh4DA4=", - "rev": "a6531044f6d0bef691ea18d4d4ce44d0daa6e816", - "revCount": 914755, + "lastModified": 1768886240, + "narHash": "sha256-C2TjvwYZ2VDxYWeqvvJ5XPPp6U7H66zeJlRaErJKoEM=", + "rev": "80e4adbcf8992d3fd27ad4964fbb84907f9478b0", + "revCount": 930839, "type": "tarball", - "url": "https://api.flakehub.com/f/pinned/NixOS/nixpkgs/0.1.914755%2Brev-a6531044f6d0bef691ea18d4d4ce44d0daa6e816/019b4613-7276-7c80-8e57-953e4698fb6e/source.tar.gz" + "url": "https://api.flakehub.com/f/pinned/NixOS/nixpkgs/0.1.930839%2Brev-80e4adbcf8992d3fd27ad4964fbb84907f9478b0/019bdece-8709-77ea-a1d6-9d410df27131/source.tar.gz" }, "original": { "type": "tarball", diff --git a/tools/state.json b/tools/state.json index 492e031..eeefd64 100644 --- a/tools/state.json +++ b/tools/state.json @@ -1,5 +1,5 @@ { - "nix_installer_action_revision": "ab0a9732c6464e5bb81efb82a2103c7d98f0946f", - "determinate_nix_tag": "v3.15.1", + "nix_installer_action_revision": "58e64ed13a4f3f90ba0cba819752b6df4b548da8", + "determinate_nix_tag": "v3.15.2", "checkout_action_tag": "v6.0.1" } From f9ebef276016dd519d188ee7b71879732418f8b9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 16 Feb 2026 16:51:08 -0800 Subject: [PATCH 3/5] Release v3.16.0 (#52) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Prepare release v3.16.0 * Update the state.json for v3.16.0 * Update README.md and action.yml for v3.16.0 * flake.lock: Update Flake lock file updates: • Updated input 'nixpkgs': 'https://api.flakehub.com/f/pinned/NixOS/nixpkgs/0.1.930839%2Brev-80e4adbcf8992d3fd27ad4964fbb84907f9478b0/019bdece-8709-77ea-a1d6-9d410df27131/source.tar.gz' (2026-01-20) → 'https://api.flakehub.com/f/pinned/NixOS/nixpkgs/0.1.945868%2Brev-a82ccc39b39b621151d6732718e3e250109076fa/019c5b2e-592f-7d17-b9ce-868f25acfeca/source.tar.gz' (2026-02-13) --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- README.md | 10 +++++----- action.yml | 4 ++-- flake.lock | 10 +++++----- tools/state.json | 6 +++--- 4 files changed, 15 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 64b5ced..6d150b4 100644 --- a/README.md +++ b/README.md @@ -52,8 +52,8 @@ jobs: id-token: write contents: read steps: - - uses: actions/checkout@v6.0.1 - - uses: DeterminateSystems/determinate-nix-action@main # or v3.15.2 to pin to a release + - uses: actions/checkout@v6.0.2 + - uses: DeterminateSystems/determinate-nix-action@main # or v3.16.0 to pin to a release - run: nix build . ``` @@ -67,10 +67,10 @@ jobs: Unlike `DeterminateSystems/nix-installer-action`, we fully support explicit version pinning for maximum consistency. This Action is **automatically tagged** for every Determinate Nix release, giving you complete control over your CI environment: -📍 Pinning to `DeterminateSystems/determinate-nix-action@v3.15.2` guarantees: +📍 Pinning to `DeterminateSystems/determinate-nix-action@v3.16.0` guarantees: - Same `nix-installer-action` revision every time -- Consistent Determinate Nix v3.15.2 installation +- Consistent Determinate Nix v3.16.0 installation - Reproducible CI workflows, even years later ✨ Using `@main` instead? You'll: @@ -113,7 +113,7 @@ updates: | `source-branch` | The branch of `nix-installer` to use (conflicts with `source-tag`, `source-revision`, `source-pr`) | | | | `source-pr` | The PR of `nix-installer` to use (conflicts with `source-tag`, `source-revision`, `source-branch`) | | | | `source-revision` | The revision of `nix-installer` to use (conflicts with `source-tag`, `source-branch`, `source-pr`) | | | -| `source-tag` | The tag of `nix-installer` to use (conflicts with `source-revision`, `source-branch`, `source-pr`) | | `v3.15.2` | +| `source-tag` | The tag of `nix-installer` to use (conflicts with `source-revision`, `source-branch`, `source-pr`) | | `v3.16.0` | | `source-url` | A URL pointing to a `nix-installer` executable | | | | `backtrace` | The setting for `RUST_BACKTRACE` (see https://doc.rust-lang.org/std/backtrace/index.html#environment-variables) | | | | `diagnostic-endpoint` | Diagnostic endpoint url where the installer sends data to. To disable set this to an empty string. | | `-` | diff --git a/action.yml b/action.yml index 80522fc..aeec5d5 100644 --- a/action.yml +++ b/action.yml @@ -72,7 +72,7 @@ "source-tag": { "description": "The tag of `nix-installer` to use (conflicts with `source-revision`, `source-branch`, `source-pr`)", "required": false, - "default": "v3.15.2" + "default": "v3.16.0" }, "source-url": { "description": "A URL pointing to a `nix-installer` executable", @@ -105,7 +105,7 @@ "using": "composite", "steps": [ { - "uses": "DeterminateSystems/nix-installer-action@58e64ed13a4f3f90ba0cba819752b6df4b548da8", + "uses": "DeterminateSystems/nix-installer-action@86cbc893b3c44423bb3b27da33c306deba1e1ef4", "with": { "extra-conf": "${{ inputs.extra-conf }}", "github-server-url": "${{ inputs.github-server-url }}", diff --git a/flake.lock b/flake.lock index 9e49ebc..5216308 100644 --- a/flake.lock +++ b/flake.lock @@ -2,12 +2,12 @@ "nodes": { "nixpkgs": { "locked": { - "lastModified": 1768886240, - "narHash": "sha256-C2TjvwYZ2VDxYWeqvvJ5XPPp6U7H66zeJlRaErJKoEM=", - "rev": "80e4adbcf8992d3fd27ad4964fbb84907f9478b0", - "revCount": 930839, + "lastModified": 1771008912, + "narHash": "sha256-gf2AmWVTs8lEq7z/3ZAsgnZDhWIckkb+ZnAo5RzSxJg=", + "rev": "a82ccc39b39b621151d6732718e3e250109076fa", + "revCount": 945868, "type": "tarball", - "url": "https://api.flakehub.com/f/pinned/NixOS/nixpkgs/0.1.930839%2Brev-80e4adbcf8992d3fd27ad4964fbb84907f9478b0/019bdece-8709-77ea-a1d6-9d410df27131/source.tar.gz" + "url": "https://api.flakehub.com/f/pinned/NixOS/nixpkgs/0.1.945868%2Brev-a82ccc39b39b621151d6732718e3e250109076fa/019c5b2e-592f-7d17-b9ce-868f25acfeca/source.tar.gz" }, "original": { "type": "tarball", diff --git a/tools/state.json b/tools/state.json index eeefd64..d443297 100644 --- a/tools/state.json +++ b/tools/state.json @@ -1,5 +1,5 @@ { - "nix_installer_action_revision": "58e64ed13a4f3f90ba0cba819752b6df4b548da8", - "determinate_nix_tag": "v3.15.2", - "checkout_action_tag": "v6.0.1" + "nix_installer_action_revision": "86cbc893b3c44423bb3b27da33c306deba1e1ef4", + "determinate_nix_tag": "v3.16.0", + "checkout_action_tag": "v6.0.2" } From 681d8e8bfdb5d7af56f113ba2425b1fb00ec9edc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 22 Feb 2026 22:09:54 -0500 Subject: [PATCH 4/5] Release v3.16.1 (#53) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Prepare release v3.16.1 * Update the state.json for v3.16.1 * Update README.md and action.yml for v3.16.1 * flake.lock: Update Flake lock file updates: • Updated input 'nixpkgs': 'https://api.flakehub.com/f/pinned/NixOS/nixpkgs/0.1.945868%2Brev-a82ccc39b39b621151d6732718e3e250109076fa/019c5b2e-592f-7d17-b9ce-868f25acfeca/source.tar.gz' (2026-02-13) → 'https://api.flakehub.com/f/pinned/NixOS/nixpkgs/0.1.948083%2Brev-0182a361324364ae3f436a63005877674cf45efb/019c71f3-061e-7c0e-b75b-ea375738503a/source.tar.gz' (2026-02-17) --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- README.md | 8 ++++---- action.yml | 4 ++-- flake.lock | 10 +++++----- tools/state.json | 4 ++-- 4 files changed, 13 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 6d150b4..10fbaca 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ jobs: contents: read steps: - uses: actions/checkout@v6.0.2 - - uses: DeterminateSystems/determinate-nix-action@main # or v3.16.0 to pin to a release + - uses: DeterminateSystems/determinate-nix-action@main # or v3.16.1 to pin to a release - run: nix build . ``` @@ -67,10 +67,10 @@ jobs: Unlike `DeterminateSystems/nix-installer-action`, we fully support explicit version pinning for maximum consistency. This Action is **automatically tagged** for every Determinate Nix release, giving you complete control over your CI environment: -📍 Pinning to `DeterminateSystems/determinate-nix-action@v3.16.0` guarantees: +📍 Pinning to `DeterminateSystems/determinate-nix-action@v3.16.1` guarantees: - Same `nix-installer-action` revision every time -- Consistent Determinate Nix v3.16.0 installation +- Consistent Determinate Nix v3.16.1 installation - Reproducible CI workflows, even years later ✨ Using `@main` instead? You'll: @@ -113,7 +113,7 @@ updates: | `source-branch` | The branch of `nix-installer` to use (conflicts with `source-tag`, `source-revision`, `source-pr`) | | | | `source-pr` | The PR of `nix-installer` to use (conflicts with `source-tag`, `source-revision`, `source-branch`) | | | | `source-revision` | The revision of `nix-installer` to use (conflicts with `source-tag`, `source-branch`, `source-pr`) | | | -| `source-tag` | The tag of `nix-installer` to use (conflicts with `source-revision`, `source-branch`, `source-pr`) | | `v3.16.0` | +| `source-tag` | The tag of `nix-installer` to use (conflicts with `source-revision`, `source-branch`, `source-pr`) | | `v3.16.1` | | `source-url` | A URL pointing to a `nix-installer` executable | | | | `backtrace` | The setting for `RUST_BACKTRACE` (see https://doc.rust-lang.org/std/backtrace/index.html#environment-variables) | | | | `diagnostic-endpoint` | Diagnostic endpoint url where the installer sends data to. To disable set this to an empty string. | | `-` | diff --git a/action.yml b/action.yml index aeec5d5..0652ae7 100644 --- a/action.yml +++ b/action.yml @@ -72,7 +72,7 @@ "source-tag": { "description": "The tag of `nix-installer` to use (conflicts with `source-revision`, `source-branch`, `source-pr`)", "required": false, - "default": "v3.16.0" + "default": "v3.16.1" }, "source-url": { "description": "A URL pointing to a `nix-installer` executable", @@ -105,7 +105,7 @@ "using": "composite", "steps": [ { - "uses": "DeterminateSystems/nix-installer-action@86cbc893b3c44423bb3b27da33c306deba1e1ef4", + "uses": "DeterminateSystems/nix-installer-action@95f009f8cba987d36d7e3396d29de81b2883654a", "with": { "extra-conf": "${{ inputs.extra-conf }}", "github-server-url": "${{ inputs.github-server-url }}", diff --git a/flake.lock b/flake.lock index 5216308..d1ea64f 100644 --- a/flake.lock +++ b/flake.lock @@ -2,12 +2,12 @@ "nodes": { "nixpkgs": { "locked": { - "lastModified": 1771008912, - "narHash": "sha256-gf2AmWVTs8lEq7z/3ZAsgnZDhWIckkb+ZnAo5RzSxJg=", - "rev": "a82ccc39b39b621151d6732718e3e250109076fa", - "revCount": 945868, + "lastModified": 1771369470, + "narHash": "sha256-0NBlEBKkN3lufyvFegY4TYv5mCNHbi5OmBDrzihbBMQ=", + "rev": "0182a361324364ae3f436a63005877674cf45efb", + "revCount": 948083, "type": "tarball", - "url": "https://api.flakehub.com/f/pinned/NixOS/nixpkgs/0.1.945868%2Brev-a82ccc39b39b621151d6732718e3e250109076fa/019c5b2e-592f-7d17-b9ce-868f25acfeca/source.tar.gz" + "url": "https://api.flakehub.com/f/pinned/NixOS/nixpkgs/0.1.948083%2Brev-0182a361324364ae3f436a63005877674cf45efb/019c71f3-061e-7c0e-b75b-ea375738503a/source.tar.gz" }, "original": { "type": "tarball", diff --git a/tools/state.json b/tools/state.json index d443297..b5213d5 100644 --- a/tools/state.json +++ b/tools/state.json @@ -1,5 +1,5 @@ { - "nix_installer_action_revision": "86cbc893b3c44423bb3b27da33c306deba1e1ef4", - "determinate_nix_tag": "v3.16.0", + "nix_installer_action_revision": "95f009f8cba987d36d7e3396d29de81b2883654a", + "determinate_nix_tag": "v3.16.1", "checkout_action_tag": "v6.0.2" } From 73327eb48f028efaaf5013656ba216ca3cdeca7b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 24 Feb 2026 01:19:50 -0500 Subject: [PATCH 5/5] Release v3.16.3 (#54) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Prepare release v3.16.3 * Update the state.json for v3.16.3 * Update README.md and action.yml for v3.16.3 * flake.lock: Update Flake lock file updates: • Updated input 'nixpkgs': 'https://api.flakehub.com/f/pinned/NixOS/nixpkgs/0.1.948083%2Brev-0182a361324364ae3f436a63005877674cf45efb/019c71f3-061e-7c0e-b75b-ea375738503a/source.tar.gz' (2026-02-17) → 'https://api.flakehub.com/f/pinned/NixOS/nixpkgs/0.1.953160%2Brev-2fc6539b481e1d2569f25f8799236694180c0993/019c8e05-d2f6-7c7e-9ead-612154b18bfb/source.tar.gz' (2026-02-23) --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- README.md | 8 ++++---- action.yml | 2 +- flake.lock | 10 +++++----- tools/state.json | 2 +- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 10fbaca..8cfe0e2 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ jobs: contents: read steps: - uses: actions/checkout@v6.0.2 - - uses: DeterminateSystems/determinate-nix-action@main # or v3.16.1 to pin to a release + - uses: DeterminateSystems/determinate-nix-action@main # or v3.16.3 to pin to a release - run: nix build . ``` @@ -67,10 +67,10 @@ jobs: Unlike `DeterminateSystems/nix-installer-action`, we fully support explicit version pinning for maximum consistency. This Action is **automatically tagged** for every Determinate Nix release, giving you complete control over your CI environment: -📍 Pinning to `DeterminateSystems/determinate-nix-action@v3.16.1` guarantees: +📍 Pinning to `DeterminateSystems/determinate-nix-action@v3.16.3` guarantees: - Same `nix-installer-action` revision every time -- Consistent Determinate Nix v3.16.1 installation +- Consistent Determinate Nix v3.16.3 installation - Reproducible CI workflows, even years later ✨ Using `@main` instead? You'll: @@ -113,7 +113,7 @@ updates: | `source-branch` | The branch of `nix-installer` to use (conflicts with `source-tag`, `source-revision`, `source-pr`) | | | | `source-pr` | The PR of `nix-installer` to use (conflicts with `source-tag`, `source-revision`, `source-branch`) | | | | `source-revision` | The revision of `nix-installer` to use (conflicts with `source-tag`, `source-branch`, `source-pr`) | | | -| `source-tag` | The tag of `nix-installer` to use (conflicts with `source-revision`, `source-branch`, `source-pr`) | | `v3.16.1` | +| `source-tag` | The tag of `nix-installer` to use (conflicts with `source-revision`, `source-branch`, `source-pr`) | | `v3.16.3` | | `source-url` | A URL pointing to a `nix-installer` executable | | | | `backtrace` | The setting for `RUST_BACKTRACE` (see https://doc.rust-lang.org/std/backtrace/index.html#environment-variables) | | | | `diagnostic-endpoint` | Diagnostic endpoint url where the installer sends data to. To disable set this to an empty string. | | `-` | diff --git a/action.yml b/action.yml index 0652ae7..4670ae4 100644 --- a/action.yml +++ b/action.yml @@ -72,7 +72,7 @@ "source-tag": { "description": "The tag of `nix-installer` to use (conflicts with `source-revision`, `source-branch`, `source-pr`)", "required": false, - "default": "v3.16.1" + "default": "v3.16.3" }, "source-url": { "description": "A URL pointing to a `nix-installer` executable", diff --git a/flake.lock b/flake.lock index d1ea64f..d37a53a 100644 --- a/flake.lock +++ b/flake.lock @@ -2,12 +2,12 @@ "nodes": { "nixpkgs": { "locked": { - "lastModified": 1771369470, - "narHash": "sha256-0NBlEBKkN3lufyvFegY4TYv5mCNHbi5OmBDrzihbBMQ=", - "rev": "0182a361324364ae3f436a63005877674cf45efb", - "revCount": 948083, + "lastModified": 1771848320, + "narHash": "sha256-0MAd+0mun3K/Ns8JATeHT1sX28faLII5hVLq0L3BdZU=", + "rev": "2fc6539b481e1d2569f25f8799236694180c0993", + "revCount": 953160, "type": "tarball", - "url": "https://api.flakehub.com/f/pinned/NixOS/nixpkgs/0.1.948083%2Brev-0182a361324364ae3f436a63005877674cf45efb/019c71f3-061e-7c0e-b75b-ea375738503a/source.tar.gz" + "url": "https://api.flakehub.com/f/pinned/NixOS/nixpkgs/0.1.953160%2Brev-2fc6539b481e1d2569f25f8799236694180c0993/019c8e05-d2f6-7c7e-9ead-612154b18bfb/source.tar.gz" }, "original": { "type": "tarball", diff --git a/tools/state.json b/tools/state.json index b5213d5..1af7049 100644 --- a/tools/state.json +++ b/tools/state.json @@ -1,5 +1,5 @@ { "nix_installer_action_revision": "95f009f8cba987d36d7e3396d29de81b2883654a", - "determinate_nix_tag": "v3.16.1", + "determinate_nix_tag": "v3.16.3", "checkout_action_tag": "v6.0.2" }