Skip to content

Commit da6b56e

Browse files
committed
pr comments
1 parent 810144f commit da6b56e

File tree

4 files changed

+13
-61
lines changed

4 files changed

+13
-61
lines changed

.github/workflows/deploy-qa.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
- README.md
1010
env:
1111
BRANCH_NAME: '${{ github.event.inputs.branch_name || github.head_ref || github.ref_name }}'
12-
NODE_VERSION: 16
12+
NODE_VERSION: 18
1313
JAVA_VERSION: 11
1414
JAVA_DISTRIBUTION: 'adopt'
1515

.github/workflows/gate-keep.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Gate Keeping
22
on:
33
push:
44
env:
5-
NODE_VERSION: 16
5+
NODE_VERSION: 18
66
JAVA_VERSION: 11
77
JAVA_DISTRIBUTION: 'adopt'
88

flake.lock

Lines changed: 5 additions & 40 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 6 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,16 @@
11
{
2-
description = "NodeJS 16_x project";
2+
description = "web-branch-deep-linking-attribution flake";
33

44
inputs = {
5-
# Specify the source of Home Manager and Nixpkgs.
6-
branch-nix.url = "git+ssh://[email protected]/BranchMetrics/nix";
5+
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.05";
6+
utils.url = "github:numtide/flake-utils";
77
};
88

9-
outputs = { self, branch-nix }:
10-
let
11-
nixpkgs = branch-nix.nixpkgs;
12-
nixpkgs-unstable = branch-nix.nixpkgs-unstable;
13-
extra-pkgs = branch-nix.packages;
14-
utils = branch-nix.utils;
15-
system-utils = branch-nix.system-utils;
16-
in
9+
outputs = { self, nixpkgs, utils }:
1710
utils.lib.eachDefaultSystem (system:
1811
let
19-
stable-pkgs = nixpkgs.legacyPackages.${system};
20-
unstable-pkgs = nixpkgs.legacyPackages.${system};
21-
pkgs = stable-pkgs // {
22-
extra-pkgs = extra-pkgs.${system};
23-
unstable = unstable-pkgs;
24-
};
25-
bazel-os = system-utils.getBazelOs system;
26-
nodejs = pkgs.extra-pkgs.nodejs-16_x;
12+
pkgs = nixpkgs.legacyPackages.${system};
13+
nodejs = pkgs.nodejs-18_x;
2714
in
2815
{
2916
devShell = pkgs.mkShell {

0 commit comments

Comments
 (0)