From 32bd8792cc408b1c79282a11540086b3c756f0ec Mon Sep 17 00:00:00 2001 From: Luni-4 Date: Tue, 20 Feb 2024 14:44:44 +0100 Subject: [PATCH] [CI] Fix codecov and update to weekly the `.dependabot` file for `cargo` (#1320) * ci: Fix codecov * ci: Add all dependencies to a dependabot group * Update dependabot scheduling for cargo --- .github/dependabot.yml | 20 +------------------- .github/workflows/test.yml | 1 + 2 files changed, 2 insertions(+), 19 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 398f6f6e9..e87509bbe 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -9,22 +9,4 @@ updates: - package-ecosystem: "cargo" directory: "/" schedule: - interval: "daily" - # For each dependencies group, dependabot will open a PR containing - # the new versions available for that group. - groups: - # wgpu dependencies group - wgpu-dependencies: - patterns: - - "futures-intrusive" - - "pollster" - - "text_placeholder" - - "wgpu" - # wasm dependencies group - wasm-bindgen-dependencies: - patterns: - - "js-sys" - - "wasm-bindgen" - - "wasm-bindgen-futures" - - "wasm-logger" - - "wasm-timer" + interval: "weekly" diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ef99b465d..be5057518 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -262,6 +262,7 @@ jobs: uses: codecov/codecov-action@v4 with: files: lcov.info + token: ${{ secrets.CODECOV_TOKEN }} check-typos: runs-on: ubuntu-22.04