Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: DeterminateSystems/nix-installer-action
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v5
Choose a base ref
...
head repository: DeterminateSystems/nix-installer-action
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v6
Choose a head ref
  • 1 commit
  • 3 files changed
  • 1 contributor

Commits on Oct 12, 2023

  1. Update the action to use node20 (#41)

    * Update nixpkgs to unstable, and nodejs to latest
    
    * Upgrade the action to use node20
    grahamc authored Oct 12, 2023
    Copy the full SHA
    bc7b192 View commit details
Showing with 10 additions and 8 deletions.
  1. +1 −1 action.yml
  2. +7 −5 flake.lock
  3. +2 −2 flake.nix
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
@@ -106,6 +106,6 @@ inputs:
default: "true"

runs:
using: "node16"
using: "node20"
main: 'dist/index.js'
post: 'dist/index.js'
12 changes: 7 additions & 5 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@

inputs = {
flake-schemas.url = "https://flakehub.com/f/DeterminateSystems/flake-schemas/*.tar.gz";
nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/*.tar.gz";
nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0.1.0.tar.gz";
};

outputs = { self, flake-schemas, nixpkgs }:
@@ -20,7 +20,7 @@
devShells = forEachSupportedSystem ({ pkgs }: {
default = pkgs.mkShell {
packages = with pkgs; [
nodejs-18_x
nodejs_latest
nixpkgs-fmt
];
};