diff --git a/Earthfile b/Earthfile index 537391ab0cc..2826288c4b8 100644 --- a/Earthfile +++ b/Earthfile @@ -1,9 +1,9 @@ VERSION 0.8 -IMPORT github.com/input-output-hk/catalyst-ci/earthly/mdlint:v3.5.12 AS mdlint-ci -IMPORT github.com/input-output-hk/catalyst-ci/earthly/cspell:v3.5.12 AS cspell-ci -IMPORT github.com/input-output-hk/catalyst-ci/earthly/python:v3.5.12 AS python-ci -IMPORT github.com/input-output-hk/catalyst-ci:v3.5.12 AS cat-ci +IMPORT github.com/input-output-hk/catalyst-ci/earthly/mdlint:v3.5.17 AS mdlint-ci +IMPORT github.com/input-output-hk/catalyst-ci/earthly/cspell:v3.5.17 AS cspell-ci +IMPORT github.com/input-output-hk/catalyst-ci/earthly/python:v3.5.17 AS python-ci +IMPORT github.com/input-output-hk/catalyst-ci:v3.5.17 AS cat-ci FROM debian:stable-slim diff --git a/docs/Earthfile b/docs/Earthfile index 79d917d5189..5abb9a6ebb8 100644 --- a/docs/Earthfile +++ b/docs/Earthfile @@ -1,6 +1,6 @@ VERSION 0.8 -IMPORT github.com/input-output-hk/catalyst-ci/earthly/docs:v3.5.12 AS docs-ci +IMPORT github.com/input-output-hk/catalyst-ci/earthly/docs:v3.5.17 AS docs-ci IMPORT .. AS repo diff --git a/docs/src/architecture/08_concepts/catalyst_voting/cddl/Earthfile b/docs/src/architecture/08_concepts/catalyst_voting/cddl/Earthfile index 99f5c0c6315..add5054bc91 100644 --- a/docs/src/architecture/08_concepts/catalyst_voting/cddl/Earthfile +++ b/docs/src/architecture/08_concepts/catalyst_voting/cddl/Earthfile @@ -1,6 +1,6 @@ VERSION 0.8 -IMPORT github.com/input-output-hk/catalyst-ci/earthly/cddl:v3.5.12 AS cddl-ci +IMPORT github.com/input-output-hk/catalyst-ci/earthly/cddl:v3.5.17 AS cddl-ci check-cddl: FROM cddl-ci+cddl-base diff --git a/docs/src/architecture/08_concepts/immutable_ledger/cddl/Earthfile b/docs/src/architecture/08_concepts/immutable_ledger/cddl/Earthfile index 57d7120cb2e..596f6009f8b 100644 --- a/docs/src/architecture/08_concepts/immutable_ledger/cddl/Earthfile +++ b/docs/src/architecture/08_concepts/immutable_ledger/cddl/Earthfile @@ -1,6 +1,6 @@ VERSION 0.8 -IMPORT github.com/input-output-hk/catalyst-ci/earthly/cddl:v3.5.12 AS cddl-ci +IMPORT github.com/input-output-hk/catalyst-ci/earthly/cddl:v3.5.17 AS cddl-ci check-cddl: FROM cddl-ci+cddl-base diff --git a/docs/src/architecture/08_concepts/signed_doc/cddl/Earthfile b/docs/src/architecture/08_concepts/signed_doc/cddl/Earthfile index 876f0badc7d..8ca721bf0ff 100644 --- a/docs/src/architecture/08_concepts/signed_doc/cddl/Earthfile +++ b/docs/src/architecture/08_concepts/signed_doc/cddl/Earthfile @@ -1,6 +1,6 @@ VERSION 0.8 -IMPORT github.com/input-output-hk/catalyst-ci/earthly/cddl:v3.5.12 AS cddl-ci +IMPORT github.com/input-output-hk/catalyst-ci/earthly/cddl:v3.5.17 AS cddl-ci check-cddl: FROM cddl-ci+cddl-base diff --git a/rust/.config/nextest.toml b/rust/.config/nextest.toml index be3673830bb..c8cccf50813 100644 --- a/rust/.config/nextest.toml +++ b/rust/.config/nextest.toml @@ -47,3 +47,14 @@ store-success-output = true # Note that if a description can be extracted from the output, it is always stored in the # element. store-failure-output = true + +[test-groups] +serial-integration = { max-threads = 1 } + +[[profile.default.overrides]] +filter = 'test(/^serial::/)' +test-group = 'serial-integration' + +[[profile.ci.overrides]] +filter = 'test(/^serial::/)' +test-group = "serial-integration" diff --git a/rust/Earthfile b/rust/Earthfile index 756cb432dc7..def1878b47a 100644 --- a/rust/Earthfile +++ b/rust/Earthfile @@ -1,6 +1,6 @@ VERSION 0.8 -IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust:v3.5.12 AS rust-ci +IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust:v3.5.17 AS rust-ci IMPORT ../ AS repo-ci COPY_SRC: diff --git a/rust/c509-certificate/Earthfile b/rust/c509-certificate/Earthfile index b9da1816b7d..5360e9939b3 100644 --- a/rust/c509-certificate/Earthfile +++ b/rust/c509-certificate/Earthfile @@ -1,6 +1,6 @@ VERSION 0.8 -IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust::v3.5.12 AS rust-ci +IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust::v3.5.17 AS rust-ci IMPORT .. AS rust-local IMPORT ../.. AS repo diff --git a/rust/cardano-chain-follower/Cargo.toml b/rust/cardano-chain-follower/Cargo.toml index 15ba58053b9..2839dd66bdb 100644 --- a/rust/cardano-chain-follower/Cargo.toml +++ b/rust/cardano-chain-follower/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cardano-chain-follower" -version = "0.0.13" +version = "0.0.14" edition.workspace = true authors.workspace = true homepage.workspace = true @@ -11,7 +11,7 @@ license.workspace = true workspace = true [dependencies] -mithril-client = { version = "0.12.2", default-features = false, features = [ +mithril-client = { version = "=0.12.2", default-features = false, features = [ "full", "num-integer-backend", ] } diff --git a/rust/deny.toml b/rust/deny.toml index d69e5b55657..0dbd4732dee 100644 --- a/rust/deny.toml +++ b/rust/deny.toml @@ -16,7 +16,10 @@ targets = [ [advisories] version = 2 -ignore = [] +ignore = [ + "RUSTSEC-2025-0067", + "RUSTSEC-2025-0068", +] [bans] multiple-versions = "warn" diff --git a/specs/Earthfile b/specs/Earthfile index 5c479c78e09..dc96f097e78 100644 --- a/specs/Earthfile +++ b/specs/Earthfile @@ -1,8 +1,8 @@ VERSION 0.8 -IMPORT github.com/input-output-hk/catalyst-ci/earthly/python:v3.5.12 AS python-ci -IMPORT github.com/input-output-hk/catalyst-ci/earthly/debian:v3.5.12 AS debian -IMPORT github.com/input-output-hk/catalyst-ci/earthly/cue:v3.5.12 AS cue +IMPORT github.com/input-output-hk/catalyst-ci/earthly/python:v3.5.17 AS python-ci +IMPORT github.com/input-output-hk/catalyst-ci/earthly/debian:v3.5.17 AS debian +IMPORT github.com/input-output-hk/catalyst-ci/earthly/cue:v3.5.17 AS cue IMPORT ../docs AS docs diff --git a/specs/generators/pages/signed_doc/cddl/Earthfile.jinja b/specs/generators/pages/signed_doc/cddl/Earthfile.jinja index 876f0badc7d..8ca721bf0ff 100644 --- a/specs/generators/pages/signed_doc/cddl/Earthfile.jinja +++ b/specs/generators/pages/signed_doc/cddl/Earthfile.jinja @@ -1,6 +1,6 @@ VERSION 0.8 -IMPORT github.com/input-output-hk/catalyst-ci/earthly/cddl:v3.5.12 AS cddl-ci +IMPORT github.com/input-output-hk/catalyst-ci/earthly/cddl:v3.5.17 AS cddl-ci check-cddl: FROM cddl-ci+cddl-base diff --git a/utilities/docs-preview/Earthfile b/utilities/docs-preview/Earthfile index 3d267432cfd..62ef278557a 100644 --- a/utilities/docs-preview/Earthfile +++ b/utilities/docs-preview/Earthfile @@ -1,6 +1,6 @@ VERSION 0.8 -IMPORT github.com/input-output-hk/catalyst-ci/earthly/docs:v3.5.12 AS docs-ci +IMPORT github.com/input-output-hk/catalyst-ci/earthly/docs:v3.5.17 AS docs-ci # update-docs-dev-script: get the latest docs dev script from CI. update-docs-dev-script: