Skip to content

Commit

Permalink
Update the action to use node20 (#41)
Browse files Browse the repository at this point in the history
* Update nixpkgs to unstable, and nodejs to latest

* Upgrade the action to use node20
  • Loading branch information
grahamc committed Oct 12, 2023
1 parent 07ebb8d commit bc7b192
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Up @@ -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 }:
Expand All @@ -20,7 +20,7 @@
devShells = forEachSupportedSystem ({ pkgs }: {
default = pkgs.mkShell {
packages = with pkgs; [
nodejs-18_x
nodejs_latest
nixpkgs-fmt
];
};
Expand Down

0 comments on commit bc7b192

Please sign in to comment.