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
5 changes: 3 additions & 2 deletions .github/workflows/nix-packages-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,11 @@ jobs:
- uses: tibdex/[email protected]
id: generate-token
with:
app_id: ${{ secrets.CREATE_PR_APP_ID }}
private_key: ${{ secrets.CREATE_PR_APP_PRIVATE_KEY }}
app_id: ${{ secrets.NIX_FLAKE_UPDATE_PR_BOT_APP_ID }}
private_key: ${{ secrets.NIX_FLAKE_UPDATE_PR_BOT_APP_PRIVATE_KEY }}

- name: Update flake packages
uses: metacraft-labs/nix-update-action@main
with:
blacklist: cardano,circ,circom,corepack-shims,cosmos-theta-testnet,emscripten,eos-vm,ffiasm,graphql,jolt,jolt-guest-rust,nexus,polkadot,polkadot-fast,rapidsnark,rapidsnark-server,risc0,risc0-rust,sp1,sp1-rust,zkm,zkwasm,zqfield-bn254
token: ${{ steps.generate-token.outputs.token }}
6 changes: 3 additions & 3 deletions .github/workflows/update-flake-lock.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Update Nix Flake lockfile
name: Flake Lock Update

on:
# Enable option to manually run the action:
Expand All @@ -13,7 +13,7 @@ jobs:
uses: metacraft-labs/nixos-modules/.github/workflows/reusable-update-flake-lock.yml@main
secrets:
CACHIX_AUTH_TOKEN: ${{ secrets.CACHIX_AUTH_TOKEN }}
CREATE_PR_APP_ID: ${{ secrets.APP_ID }}
CREATE_PR_APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
CREATE_PR_APP_ID: ${{ secrets.NIX_FLAKE_UPDATE_PR_BOT_APP_ID }}
CREATE_PR_APP_PRIVATE_KEY: ${{ secrets.NIX_FLAKE_UPDATE_PR_BOT_APP_PRIVATE_KEY }}
with:
runner: '["self-hosted", "Linux", "x86-64-v2"]'
4 changes: 2 additions & 2 deletions packages/wasmd/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
lib,
stdenv,
fetchFromGitHub,
go_1_22,
go_1_23,
autoPatchelfHook,
pkgs,
gccForLibs,
Expand All @@ -19,7 +19,7 @@ let
aarch64-darwin = "libwasmvm.dylib";
};
so_name = libwasmvm_files.${system} or (throw "Unsupported system: ${system}");
buildGoModule = pkgs.buildGoModule.override { go = go_1_22; };
buildGoModule = pkgs.buildGoModule.override { go = go_1_23; };
in
buildGoModule rec {
pname = "wasmd";
Expand Down