diff --git a/.github/workflows/ci_aarch64_build_ubuntu.yaml b/.github/workflows/ci_aarch64_build_ubuntu.yaml index 30bcc8b2b..a82243b5a 100644 --- a/.github/workflows/ci_aarch64_build_ubuntu.yaml +++ b/.github/workflows/ci_aarch64_build_ubuntu.yaml @@ -6,7 +6,10 @@ on: pull_request: types: [opened, synchronize, reopened] push: - branches: ['**'] + branches: + - master + - develop + - rc/** merge_group: {} workflow_dispatch: {} diff --git a/.github/workflows/ci_integration_tests_ubuntu.yaml b/.github/workflows/ci_integration_tests_ubuntu.yaml index 76e8841e9..bbb7af4e7 100644 --- a/.github/workflows/ci_integration_tests_ubuntu.yaml +++ b/.github/workflows/ci_integration_tests_ubuntu.yaml @@ -6,7 +6,10 @@ on: pull_request: types: [opened, synchronize, reopened] push: - branches: ['**'] + branches: + - master + - develop + - rc/** merge_group: {} workflow_dispatch: {} diff --git a/deny.toml b/deny.toml index a6f33f4ef..0839c2d75 100644 --- a/deny.toml +++ b/deny.toml @@ -173,7 +173,7 @@ registries = [ # Lint level for when multiple versions of the same crate are detected multiple-versions = "warn" # Lint level for when a crate version requirement is `*` -wildcards = "allow" +wildcards = "deny" # The graph highlighting used when creating dotgraphs for crates # with multiple versions # * lowest-version - The path to the lowest versioned duplicate is highlighted @@ -245,10 +245,10 @@ skip-tree = [ [sources] # Lint level for what to happen when a crate from a crate registry that is not # in the allow list is encountered -unknown-registry = "warn" +unknown-registry = "deny" # Lint level for what to happen when a crate from a git repository that is not # in the allow list is encountered -unknown-git = "warn" +unknown-git = "deny" # List of URLs for allowed crate registries. Defaults to the crates.io index # if not specified. If it is specified but empty, no registries are allowed. allow-registry = ["https://github.com/rust-lang/crates.io-index"]