diff --git a/.github/workflows/ci_nightly.yml b/.github/workflows/ci_nightly.yml index b5bbb42..69cf0dc 100644 --- a/.github/workflows/ci_nightly.yml +++ b/.github/workflows/ci_nightly.yml @@ -30,7 +30,7 @@ jobs: matrix: include: - name: stability - init_flags: "--curio latesttag:pdp/v* --filecoin-services latesttag:v*" + init_flags: "--curio gittag:v1.28.2 --filecoin-services latesttag:v*" issue_label: scenarios-run-stability issue_title: "FOC Devnet scenarios run report (stability)" - name: frontier diff --git a/scenarios/test_multi_copy_upload.py b/scenarios/test_multi_copy_upload.py index 4f5c625..de81926 100644 --- a/scenarios/test_multi_copy_upload.py +++ b/scenarios/test_multi_copy_upload.py @@ -246,7 +246,7 @@ def run(): "pkg", "set", "type=module", - "dependencies.filecoin-pin=0.22.3", + "dependencies.filecoin-pin=1.0.1", "dependencies.multiformats=13.4.2", ], label="pin filecoin-pin dependencies", diff --git a/src/config.rs b/src/config.rs index 750c167..aa36552 100644 --- a/src/config.rs +++ b/src/config.rs @@ -285,15 +285,15 @@ impl Default for Config { port_range_count: 100, lotus: Location::GitTag { url: "https://github.com/filecoin-project/lotus.git".to_string(), - tag: "v1.35.0".to_string(), + tag: "v1.36.0".to_string(), }, - curio: Location::GitCommit { + curio: Location::GitTag { url: "https://github.com/filecoin-project/curio.git".to_string(), - commit: "60f77a618eee24cd3482be5fea545e01f26052a4".to_string(), + tag: "v1.28.2".to_string(), }, filecoin_services: Location::GitTag { url: "https://github.com/FilOzone/filecoin-services.git".to_string(), - tag: "v1.2.0".to_string(), + tag: "v1.3.0".to_string(), }, multicall3: Location::GitTag { url: "https://github.com/mds1/multicall3.git".to_string(),