From c4f7d03f623e6912ff7415c9b25ad17858e9b951 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Nov 2024 15:45:07 +0000 Subject: [PATCH 1/2] build(deps): Bump taiki-e/install-action from 2.44.53 to 2.44.60 Bumps [taiki-e/install-action](https://github.com/taiki-e/install-action) from 2.44.53 to 2.44.60. - [Release notes](https://github.com/taiki-e/install-action/releases) - [Changelog](https://github.com/taiki-e/install-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/taiki-e/install-action/compare/278aeeb6e331c1bd610bffe45862e09452854b1a...678b06b887cdbf44fa0601e5915f865e17c2241d) --- updated-dependencies: - dependency-name: taiki-e/install-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1cbfd63f..fb46d49d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -80,7 +80,7 @@ jobs: override: true - name: Install cargo-llvm-cov - uses: taiki-e/install-action@278aeeb6e331c1bd610bffe45862e09452854b1a # v2.44.53 + uses: taiki-e/install-action@678b06b887cdbf44fa0601e5915f865e17c2241d # v2.44.60 with: tool: cargo-llvm-cov From e74cdad0311dfe403a06c590abae4c58ab3f5407 Mon Sep 17 00:00:00 2001 From: Flavio Castelli Date: Tue, 5 Nov 2024 15:19:20 +0100 Subject: [PATCH 2/2] automation: fix codecov GHA Ensure the codecov token is provided to the action using in the proper way Signed-off-by: Flavio Castelli --- .github/workflows/ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fb46d49d..39a380b0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -92,13 +92,12 @@ jobs: - name: Upload unit-tests coverage to Codecov uses: codecov/codecov-action@b9fd7d16f6d7d1b5d2bec1a2887e65ceed900238 # v4.6.0 - env: - CODECOV_TOKEN: ${{ secrets.CODECOV_ORG_TOKEN }} with: files: lcov.info fail_ci_if_error: true name: unit-tests and e2e-tests verbose: true + token: ${{ secrets.CODECOV_ORG_TOKEN }} fmt: name: Rustfmt