Skip to content
Draft
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
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
- name: Install IC SDK (dfx)
uses: dfinity/setup-dfx@main
with:
dfx-version: "0.24.2"
dfx-version: "0.26.1"
- name: Set prebuilt extensions directory
run: echo "PREBUILT_EXTENSIONS_DIR=$HOME/prebuilt-extensions" >> $GITHUB_ENV
- name: Build extension manually
Expand Down
2 changes: 1 addition & 1 deletion e2e/utils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ dfx_start_for_nns_install() {
then
DFX_START="dfx start --pocketic"
else
DFX_START="dfx start"
DFX_START="dfx start --replica"
fi

# TODO: When nns-dapp supports dynamic ports, this wait can be removed.
Expand Down
2 changes: 1 addition & 1 deletion extensions-utils/src/dependencies/dfx.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use std::path::Path;
use std::process::Command;

/// The replica revision of the NNS/SNS canisters which might have dependencies among each other.
pub const NNS_SNS_REPLICA_REV: &str = "ab3f07eadc3220acf0f5d2d3d355e4ba814716b6";
pub const NNS_SNS_REPLICA_REV: &str = "6b847e22fd4ada36d6e140795c9d659a69764d59";

/// Calls a binary from dfx cache.
///
Expand Down
Loading