Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
62 changes: 31 additions & 31 deletions .github/workflows/update-packages.yaml
Original file line number Diff line number Diff line change
@@ -1,31 +1,31 @@
name: "Update Nix Flake Packages"
on:
workflow_dispatch:
schedule:
- cron: "0 10 * * *" # https://crontab.guru/#0_10_*_*_*
jobs:
update:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Nix
uses: cachix/install-nix-action@v23
- name: Update flake packages
id: update
uses: selfuryon/[email protected]
with:
# TODO: remove nethermind after we fix build for them
# TODO: remove mev-boost after they make a new release tag
blacklist: "staking-deposit-cli,dreamboat,bls,blst,evmc,mcl,besu,teku,lighthouse,reth,wake,docs,foundry-bin,foundry,web3signer,mev-boost-prysm,mev-boost-builder,vscode-plugin-consensys-vscode-solidity-visual-editor,vscode-plugin-ackee-blockchain-solidity-tools,mev-boost,nethermind"
sign-commits: true
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
gpg-passphrase: ${{ secrets.GPG_PASSPHRASE }}
gpg-fingerprint: ${{ secrets.GPG_FINGERPRINT }}
pr-title: "chore: update packages"
pr-labels: |
dependencies
automated
auto-merge
- name: Print PR number
run: echo Pull request number is ${{ steps.update.outputs.pull-request-number }}.
# name: "Update Nix Flake Packages"
# on:
# workflow_dispatch:
# schedule:
# - cron: "0 10 * * *" # https://crontab.guru/#0_10_*_*_*
# jobs:
# update:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout repository
# uses: actions/checkout@v4
# - name: Install Nix
# uses: cachix/install-nix-action@v23
# - name: Update flake packages
# id: update
# uses: selfuryon/[email protected]
# with:
# # TODO: remove nethermind after we fix build for them
# # TODO: remove mev-boost after they make a new release tag
# blacklist: "staking-deposit-cli,dreamboat,bls,blst,evmc,mcl,besu,teku,lighthouse,reth,wake,docs,foundry-bin,foundry,web3signer,mev-boost-prysm,mev-boost-builder,vscode-plugin-consensys-vscode-solidity-visual-editor,vscode-plugin-ackee-blockchain-solidity-tools,mev-boost,nethermind"
# sign-commits: true
# gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
# gpg-passphrase: ${{ secrets.GPG_PASSPHRASE }}
# gpg-fingerprint: ${{ secrets.GPG_FINGERPRINT }}
# pr-title: "chore: update packages"
# pr-labels: |
# dependencies
# automated
# auto-merge
# - name: Print PR number
# run: echo Pull request number is ${{ steps.update.outputs.pull-request-number }}.
4 changes: 2 additions & 2 deletions pkgs/eigenlayer/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
}:
buildGoModule rec {
pname = "eigenlayer";
version = "0.6.1";
version = "0.6.2";

src = fetchFromGitHub {
owner = "Layr-Labs";
repo = "eigenlayer-cli";
rev = "v${version}";
hash = "sha256-PN1VB01NyBrDNIDpUIQlzhdwKoy17X1GdfQfRrN3bWo=";
hash = "sha256-cr3ltNmJj8GoQLADivekLU2hV7xWk4KR2Gej0rcaVTA=";
};

vendorHash = "sha256-VcXjYiJ9nwSCQJvQd7UYduZKJISRfoEXjziiX6Z3w6Q=";
Expand Down
4 changes: 2 additions & 2 deletions pkgs/nimbus/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@
in
stdenv.mkDerivation rec {
pname = "nimbus-eth2";
version = "24.2.0";
version = "24.2.1";

src = fetchFromGitHub {
owner = "status-im";
repo = pname;
rev = "v${version}";
hash = "sha256-KnrNZJv7QYBbCi+H5Iv73UdHZunE4/X6rtO3CMqxx3U=";
hash = "sha256-0dfiIB9EVrc8JDL+o/NE5C0zKEKQ9bCYX9WAe+vkfAk=";
fetchSubmodules = true;
};

Expand Down
6 changes: 3 additions & 3 deletions pkgs/zcli/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@
}:
buildGoModule rec {
pname = "zcli";
version = "0.6.0";
version = "0.7.1";

src = fetchFromGitHub {
owner = "protolambda";
repo = pname;
rev = "v${version}";
hash = "sha256-uQ67Gp1Gs7Fl1fPDe2jHc84DV9RtBRz0EaD8WIn113c=";
hash = "sha256-Kv8wDkaHX7BELATXMtTTHx/rk1FJs6RpMbhSzfXUg0M=";
};

vendorHash = "sha256-+5l35M7wsCOOLdVUY8nr+O7693TmiuVHD+2AFCltFRc=";
vendorHash = "sha256-ljLBpawNCXGTNXvnuodpDfrnKAFvi0e/HV1ns5EHeaE=";

subPackages = ["."];

Expand Down