Skip to content

Commit

Permalink
[Scheduled] Update dependencies (#10)
Browse files Browse the repository at this point in the history
Dependencies updated

Note - If you see this PR and the checks haven't run, close and reopen
the PR. See
https://github.com/peter-evans/create-pull-request/blob/main/docs/concepts-guidelines.md#triggering-further-workflow-runs

---------

Co-authored-by: dbarrosop <dbarrosop@users.noreply.github.com>
Co-authored-by: David Barroso <dbarrosop@dravetech.com>
  • Loading branch information
3 people authored May 27, 2024
1 parent f9f3aeb commit 981affa
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
6 changes: 3 additions & 3 deletions flake.lock

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

18 changes: 9 additions & 9 deletions overlays/go.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ final: prev: rec {

golangci-lint = prev.golangci-lint.override rec {
buildGoModule = args: prev.buildGoModule.override { go = go; } (args // rec {
version = "1.57.2";
version = "1.59.0";
src = prev.fetchFromGitHub {
owner = "golangci";
repo = "golangci-lint";
rev = "v${version}";
sha256 = "sha256-DO71wfDmCuziEcsme1g1uNIl3MswA+EkQcYzOYHbG+I=";
sha256 = "sha256-m4VT4jJa8AQipH1KQOYYEG84cbCS6qXORZQC8PA7838=";
};

vendorHash = "sha256-0+jImfMdVocOczGWeO03YXUg5yKYTu3WeJaokSlcYFM=";
vendorHash = "sha256-ZNoBXSJsLCqRXc09/3woUCJVyeMrFjHIznXMlNz8MsI=";

ldflags = [
"-s"
Expand Down Expand Up @@ -68,14 +68,14 @@ final: prev: rec {

govulncheck = final.buildGoModule rec {
name = "govulncheck";
version = "v1.1.0";
version = "v1.1.1";
src = final.fetchFromGitHub {
owner = "golang";
repo = "vuln";
rev = "${version}";
sha256 = "sha256-sS58HyrwyRv3zYi8OgiDYnKSbyu2i3KVoSX/0wQbqGw=";
sha256 = "sha256-aDt4TCbs5yBeJu/Fr95uI3BvPBaclnQMuJYPUXT7S+I=";
};
vendorHash = "sha256-ZHf//khvBGG+gRBKoKZo4NKoIJCQsbQfe2uT7cAHDcM=";
vendorHash = "sha256-YsZ9CchThybwgUjBg6hDQZ0bEEO18lidbGf9CIfzICc=";

doCheck = false;

Expand All @@ -89,16 +89,16 @@ final: prev: rec {

gqlgen = final.buildGoModule rec {
pname = "gqlgen";
version = "0.17.45";
version = "0.17.47";

src = final.fetchFromGitHub {
owner = "99designs";
repo = pname;
rev = "v${version}";
sha256 = "sha256-iWTeI21B/xJu/LFKGYwu0ggjh/59SlE/qm+5aPzyN9U=";
sha256 = "sha256-0hY9jD0+0dmUQ7SJDqtbODFgztQ44IRXH4gweLCO4J4=";
};

vendorHash = "sha256-Qk+93pnqEOf/xOfVNQ82KiDOiO6ucjffYGfwONNPRaw=";
vendorHash = "sha256-yvmxcPSEQIJU/AUmEm5musVqHHZFhNag6EK5t/ZSHxY=";

doCheck = false;

Expand Down
10 changes: 5 additions & 5 deletions overlays/nhost-cli.nix
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
{ final }:
let
version = "v1.16.4";
version = "v1.18.0";
dist = {
aarch64-darwin = rec {
url = "https://github.com/nhost/cli/releases/download/${version}/cli-${version}-darwin-arm64.tar.gz";
sha256 = "0azs9a29szhnj3ij31gl4id3gm02k3psykpfq4bl0qbvw59ddlvq";
sha256 = "1r94lqxhjb2far3w7pc7qwjy31047r49f105xz953v044fz2is7d";
};
x86_64-darwin = rec {
url = "https://github.com/nhost/cli/releases/download/${version}/cli-${version}-darwin-amd64.tar.gz";
sha256 = "0hwihnym5xi3alv2d4wablqg9fh4h0wvilgcr71wnd024jj9kp0x";
sha256 = "17w1jhn1zy4pvnbwky0p80kqggwfr0nn4jmv2860hgf8ar8h293l";
};
aarch64-linux = rec {
url = "https://github.com/nhost/cli/releases/download/${version}/cli-${version}-linux-arm64.tar.gz";
sha256 = "03l9i335q8hpsdchbwbwp4577imjak5nyzmbmhdx1a9prrs2vifh";
sha256 = "1gj1qrsw9d9vbiqlgz4ds8wkp2bri19kj503m2fj863bzl16jkxh";
};
x86_64-linux = rec {
url = "https://github.com/nhost/cli/releases/download/${version}/cli-${version}-linux-amd64.tar.gz";
sha256 = "0xm9s8v8fa6iwk1g8qpihhx1gr9409x2qqnmwdwqpgj97xhrvlrs";
sha256 = "0fsdnys74n8wppljsp4hmq5bqdn3c98p2hgqsifxj7h7kfjrzyd8";
};
};

Expand Down

0 comments on commit 981affa

Please sign in to comment.