Skip to content

Commit

Permalink
test: update nix
Browse files Browse the repository at this point in the history
  • Loading branch information
kalinkrustev committed Feb 13, 2024
1 parent baed63e commit d75ed2f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ui-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
steps:
- uses: actions/checkout@v2

- uses: cachix/install-nix-action@v13
- uses: cachix/install-nix-action@v25
with:
nix_path: nixpkgs=https://github.com/NixOS/nixpkgs/archive/8e4fe32876ca15e3d5eb3ecd3ca0b224417f5f17.tar.gz
nix_path: nixpkgs=channel:nixos-23.11

- name: Install dependencies
run: nix-env -if ui-tests/default.nix
Expand Down
2 changes: 1 addition & 1 deletion ui-tests/default.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Want to update dependencies? Go to https://github.com/NixOS/nixpkgs/tree/nixpkgs-unstable and
# replace the commit ref in the following line with the one you're interested in (probably the
# latest).
{ nixpkgs ? import (fetchTarball https://github.com/NixOS/nixpkgs/archive/08ef0f28e3a41424b92ba1d203de64257a9fca6a.tar.gz) { config = { allowUnfree = true; }; } }:
{ nixpkgs ? import (fetchTarball https://github.com/NixOS/nixpkgs/archive/refs/tags/23.11.tar.gz) { config = { allowUnfree = true; }; } }:

let
k3d = nixpkgs.stdenv.mkDerivation rec {
Expand Down

0 comments on commit d75ed2f

Please sign in to comment.