Skip to content

Commit

Permalink
Merge pull request #142 from DeterminateSystems/bump-inputs
Browse files Browse the repository at this point in the history
flake.lock: Update
  • Loading branch information
grahamc authored Sep 17, 2024
2 parents 5898cf2 + fe34f2a commit c837908
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runner: "macos-latest-xlarge"
artifact: "fh-ARM64-macOS"
- nix-system: "x86_64-darwin"
runner: "macos-12"
runner: "macos-14-large"
artifact: "fh-X64-macOS"
- nix-system: "aarch64-linux"
runner: "namespace-profile-default-arm64"
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/nix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ on:
jobs:
flake-check:
runs-on: UbuntuLatest32Cores128G
permissions:
id-token: "write"
contents: "read"
steps:
- uses: actions/checkout@v4

Expand Down
28 changes: 14 additions & 14 deletions flake.lock

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

2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
description = "The official CLI for FlakeHub: search for flakes, and add new inputs to your Nix flake.";

inputs = {
nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/=0.1.650378.tar.gz";
nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0.1.650378.tar.gz";

fenix = {
url = "https://flakehub.com/f/nix-community/fenix/0.1.1584.tar.gz";
Expand Down
4 changes: 2 additions & 2 deletions src/cli/cmd/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ impl FlakeHubClient {
let url = flakehub_url!(api_addr, "version", org, project, version);
let client = make_base_client(true).await?;

let res = client.get(&url.to_string()).send().await?;
let res = client.get(url.to_string()).send().await?;

// Enrich the CLI error text with the error returned by FlakeHub
if let Err(e) = res.error_for_status_ref() {
Expand Down Expand Up @@ -189,7 +189,7 @@ impl FlakeHubClient {
None => flakehub_url!(api_addr, "f", org, project),
};
let client = make_base_client(true).await?;
let res = client.get(&url.to_string()).send().await?;
let res = client.get(url.to_string()).send().await?;

// Enrich the CLI error text with the error returned by FlakeHub
if let Err(e) = res.error_for_status_ref() {
Expand Down

0 comments on commit c837908

Please sign in to comment.