Skip to content

Commit

Permalink
feat: Add Terraform versions 1.9.3 and 1.9.4 (#85)
Browse files Browse the repository at this point in the history
* fix: Update inputs on vendor-hash

* feat: Add Terraform versions 1.9.3 and 1.9.4
  • Loading branch information
sestrella authored Aug 8, 2024
1 parent 2a78267 commit 6b5daf2
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 14 deletions.
20 changes: 10 additions & 10 deletions cli/devenv.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
"devenv": {
"locked": {
"dir": "src/modules",
"lastModified": 1719323427,
"lastModified": 1723102610,
"owner": "cachix",
"repo": "devenv",
"rev": "f810f8d8cb4e674d7e635107510bcbbabaa755a3",
"treeHash": "165ad401b1788985cdaa07483f9ed110cc848958",
"rev": "6e318854efa95c5e67a1152547f838754e8f0306",
"treeHash": "6dadc5f8c13b1d27286128a4d910e3915cfc79d0",
"type": "github"
},
"original": {
Expand Down Expand Up @@ -72,16 +72,16 @@
},
"nixpkgs-stable": {
"locked": {
"lastModified": 1719234068,
"lastModified": 1722869614,
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "90bd1b26e23760742fdcb6152369919098f05417",
"treeHash": "c87db871f241e42f31db9fb9936b61cb60f127ae",
"rev": "883180e6550c1723395a3a342f830bfc5c371f6b",
"treeHash": "e3ce01703c0d0324121e0d3ec6336275025b4ae6",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "nixos-23.11",
"ref": "nixos-24.05",
"repo": "nixpkgs",
"type": "github"
}
Expand All @@ -96,11 +96,11 @@
"nixpkgs-stable": "nixpkgs-stable"
},
"locked": {
"lastModified": 1719259945,
"lastModified": 1723056346,
"owner": "cachix",
"repo": "pre-commit-hooks.nix",
"rev": "0ff4381bbb8f7a52ca4a851660fc7a437a4c6e07",
"treeHash": "1a76ff89a9d4017b48abbb1bad8837b35d604ffc",
"rev": "3c977f1c9930f54066c085305b4b2291385e7a73",
"treeHash": "d6f89338ffb2ca32c20bc0f8d50009e1894ab804",
"type": "github"
},
"original": {
Expand Down
7 changes: 4 additions & 3 deletions vendor-hash.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@ let
flake = builtins.getFlake (toString ./.);
system = builtins.currentSystem;

pkgs = flake.inputs.nixpkgs.legacyPackages.${system};
pkgs-unstable = flake.inputs.nixpkgs-unstable.legacyPackages.${system};
pkgs-1_0 = flake.inputs.nixpkgs-1_0.legacyPackages.${system};
pkgs-1_6 = flake.inputs.nixpkgs-1_6.legacyPackages.${system};
pkgs-1_9 = flake.inputs.nixpkgs-1_9.legacyPackages.${system};

terraform = flake.lib.buildTerraform {
inherit pkgs pkgs-unstable version hash;
inherit pkgs-1_0 pkgs-1_6 pkgs-1_9 version hash;
vendorHash = sha256;
};
in
Expand Down
10 changes: 9 additions & 1 deletion versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -323,6 +323,14 @@
"1.9.2": {
"hash": "sha256-g1CsDWjwjBVfSNFZ9PRGlPlJOrqXP2eMYk1P+ohtYNU=",
"vendorHash": "sha256-cPWJtrGad8VsvyjJHQwpfDitsJY/Q0iCtp1MRyzGT+U="
},
"1.9.3": {
"hash": "sha256-5xtTjT+AP7Db3bhzhHkzmRIJpJB3UFZs+4cTgDB7Ihc=",
"vendorHash": "sha256-FnjCJilPuhYs/JTuEyb4Grn4t40Ox2uqwQf2h9B227Q="
},
"1.9.4": {
"hash": "sha256-RCjeKdxrnCmOtUQfBC5/gM+FB6YHbc/V1cmVxNCVf20=",
"vendorHash": "sha256-FnjCJilPuhYs/JTuEyb4Grn4t40Ox2uqwQf2h9B227Q="
}
},
"latest": {
Expand All @@ -335,6 +343,6 @@
"1.6": "1.6.6",
"1.7": "1.7.5",
"1.8": "1.8.5",
"1.9": "1.9.2"
"1.9": "1.9.4"
}
}

0 comments on commit 6b5daf2

Please sign in to comment.