From ad234b9035ad1514da5e2d89f5daf5acc7a05f53 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Mar 2024 03:47:41 +0000 Subject: [PATCH 1/3] Update bollard requirement from 0.15 to 0.16 Updates the requirements on [bollard](https://github.com/fussybeaver/bollard) to permit the latest version. - [Release notes](https://github.com/fussybeaver/bollard/releases) - [Commits](https://github.com/fussybeaver/bollard/compare/v0.15.0...v0.16.0) --- updated-dependencies: - dependency-name: bollard dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 8b11eda36..e4d700b4a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,7 +28,7 @@ edition = "2021" [dev-dependencies] again = "0.1" -bollard = "0.15" +bollard = "0.16" futures = "0.3" -tokio = { version = "1", features = ["macros", "time"] } +tokio = { version = "1", features = ["macros", "time", "rt-multi-thread"] } speculoos = "0.11.0" From 337bf66d36837ad82d8e37d91ac83ec2c6de5a3e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Mar 2024 03:31:59 +0000 Subject: [PATCH 2/3] Bump codecov/codecov-action from 3 to 4 Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 3 to 4. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v3...v4) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index cb4d8104c..29e298756 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -692,7 +692,7 @@ jobs: - name: Install Linux build dependencies run: | - dnf install -y elfutils-devel cmake libuuid-devel openssl openssl-devel cyrus-sasl-devel cyrus-sasl-plain swig make libwebsockets-devel libnghttp2-devel ccache libasan libubsan libtsan libunwind-devel + dnf install -y git elfutils-devel cmake libuuid-devel openssl openssl-devel cyrus-sasl-devel cyrus-sasl-plain swig make libwebsockets-devel libnghttp2-devel ccache libasan libubsan libtsan libunwind-devel - name: Install Linux build dependencies (Fedora) if: ${{ matrix.container == 'fedora' }} @@ -824,11 +824,11 @@ jobs: # https://github.com/codecov/codecov-action - name: Upload C Coverage if: ${{ !cancelled() && matrix.buildType == 'Coverage' }} - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: flags: ${{matrix.covType}}tests verbose: true - gcov: true + plugin: gcov name: skupper-router root_dir: . working-directory: ${{github.workspace}}/skupper-router @@ -842,7 +842,7 @@ jobs: - name: Upload Python Coverage if: ${{ !cancelled() && matrix.buildType == 'Coverage' }} - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: flags: py${{matrix.covType}}tests verbose: true From 561bbf1a463dce6049e50f270eaec4643b5c3489 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jiri=20Dan=C4=9Bk?= Date: Thu, 13 Jun 2024 17:36:29 +0200 Subject: [PATCH 3/3] Update build.yaml w/ quick fix for coverage --- .github/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 29e298756..21feb55b4 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -828,7 +828,7 @@ jobs: with: flags: ${{matrix.covType}}tests verbose: true - plugin: gcov + plugins: gcov, pycoverage name: skupper-router root_dir: . working-directory: ${{github.workspace}}/skupper-router