From 6854a8950cc5650898d5a7ae041fc4f32110db8d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 6 Feb 2024 13:19:46 +0000 Subject: [PATCH] build(deps): bump the devops group with 5 updates (#8218) Bumps the devops group with 5 updates: | Package | From | To | | --- | --- | --- | | [arduino/setup-protoc](https://github.com/arduino/setup-protoc) | `2.1.0` | `3.0.0` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `3.1.4` | `3.1.6` | | [tj-actions/changed-files](https://github.com/tj-actions/changed-files) | `42.0.0` | `42.0.2` | | [peter-evans/dockerhub-description](https://github.com/peter-evans/dockerhub-description) | `3.4.2` | `4.0.0` | | [docker/metadata-action](https://github.com/docker/metadata-action) | `5.5.0` | `5.5.1` | Updates `arduino/setup-protoc` from 2.1.0 to 3.0.0 - [Release notes](https://github.com/arduino/setup-protoc/releases) - [Commits](https://github.com/arduino/setup-protoc/compare/v2.1.0...v3.0.0) Updates `codecov/codecov-action` from 3.1.4 to 3.1.6 - [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.1.4...v3.1.6) Updates `tj-actions/changed-files` from 42.0.0 to 42.0.2 - [Release notes](https://github.com/tj-actions/changed-files/releases) - [Changelog](https://github.com/tj-actions/changed-files/blob/main/HISTORY.md) - [Commits](https://github.com/tj-actions/changed-files/compare/v42.0.0...v42.0.2) Updates `peter-evans/dockerhub-description` from 3.4.2 to 4.0.0 - [Release notes](https://github.com/peter-evans/dockerhub-description/releases) - [Commits](https://github.com/peter-evans/dockerhub-description/compare/v3.4.2...v4.0.0) Updates `docker/metadata-action` from 5.5.0 to 5.5.1 - [Release notes](https://github.com/docker/metadata-action/releases) - [Commits](https://github.com/docker/metadata-action/compare/v5.5.0...v5.5.1) --- updated-dependencies: - dependency-name: arduino/setup-protoc dependency-type: direct:production update-type: version-update:semver-major dependency-group: devops - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-patch dependency-group: devops - dependency-name: tj-actions/changed-files dependency-type: direct:production update-type: version-update:semver-patch dependency-group: devops - dependency-name: peter-evans/dockerhub-description dependency-type: direct:production update-type: version-update:semver-major dependency-group: devops - dependency-name: docker/metadata-action dependency-type: direct:production update-type: version-update:semver-patch dependency-group: devops ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/ci-build-crates.yml | 2 +- .github/workflows/ci-coverage.yml | 2 +- .github/workflows/ci-lint.yml | 8 ++++---- .github/workflows/ci-unit-tests-os.yml | 4 ++-- .github/workflows/docs-deploy-firebase.yml | 2 +- .github/workflows/docs-dockerhub-description.yml | 2 +- .github/workflows/sub-build-docker-image.yml | 2 +- .github/workflows/sub-build-lightwalletd.yml | 2 +- 8 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci-build-crates.yml b/.github/workflows/ci-build-crates.yml index 1eecbbbfe..5347eee6b 100644 --- a/.github/workflows/ci-build-crates.yml +++ b/.github/workflows/ci-build-crates.yml @@ -128,7 +128,7 @@ jobs: - uses: r7kamura/rust-problem-matchers@v1.4.0 - name: Install last version of Protoc - uses: arduino/setup-protoc@v2.1.0 + uses: arduino/setup-protoc@v3.0.0 with: # TODO: increase to latest version after https://github.com/arduino/setup-protoc/issues/33 is fixed version: '23.x' diff --git a/.github/workflows/ci-coverage.yml b/.github/workflows/ci-coverage.yml index 482b0d7db..52645a16e 100644 --- a/.github/workflows/ci-coverage.yml +++ b/.github/workflows/ci-coverage.yml @@ -103,4 +103,4 @@ jobs: run: cargo llvm-cov --lcov --no-run --output-path lcov.info - name: Upload coverage report to Codecov - uses: codecov/codecov-action@v3.1.4 + uses: codecov/codecov-action@v3.1.6 diff --git a/.github/workflows/ci-lint.yml b/.github/workflows/ci-lint.yml index d17b4ec7f..735e0cda2 100644 --- a/.github/workflows/ci-lint.yml +++ b/.github/workflows/ci-lint.yml @@ -44,7 +44,7 @@ jobs: - name: Rust files id: changed-files-rust - uses: tj-actions/changed-files@v42.0.0 + uses: tj-actions/changed-files@v42.0.2 with: files: | **/*.rs @@ -56,7 +56,7 @@ jobs: - name: Workflow files id: changed-files-workflows - uses: tj-actions/changed-files@v42.0.0 + uses: tj-actions/changed-files@v42.0.2 with: files: | .github/workflows/*.yml @@ -74,7 +74,7 @@ jobs: persist-credentials: false - name: Install last version of Protoc - uses: arduino/setup-protoc@v2.1.0 + uses: arduino/setup-protoc@v3.0.0 with: # TODO: increase to latest version after https://github.com/arduino/setup-protoc/issues/33 is fixed version: '23.x' @@ -125,7 +125,7 @@ jobs: - uses: r7kamura/rust-problem-matchers@v1.4.0 - name: Install last version of Protoc - uses: arduino/setup-protoc@v2.1.0 + uses: arduino/setup-protoc@v3.0.0 with: # TODO: increase to latest version after https://github.com/arduino/setup-protoc/issues/33 is fixed version: '23.x' diff --git a/.github/workflows/ci-unit-tests-os.yml b/.github/workflows/ci-unit-tests-os.yml index 80d0cdcdc..2021c7132 100644 --- a/.github/workflows/ci-unit-tests-os.yml +++ b/.github/workflows/ci-unit-tests-os.yml @@ -101,7 +101,7 @@ jobs: - uses: r7kamura/rust-problem-matchers@v1.4.0 - name: Install last version of Protoc - uses: arduino/setup-protoc@v2.1.0 + uses: arduino/setup-protoc@v3.0.0 with: # TODO: increase to latest version after https://github.com/arduino/setup-protoc/issues/33 is fixed version: '23.x' @@ -212,7 +212,7 @@ jobs: - uses: r7kamura/rust-problem-matchers@v1.4.0 - name: Install last version of Protoc - uses: arduino/setup-protoc@v2.1.0 + uses: arduino/setup-protoc@v3.0.0 with: version: '23.x' repo-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/docs-deploy-firebase.yml b/.github/workflows/docs-deploy-firebase.yml index 85e39e2c6..ae54cf557 100644 --- a/.github/workflows/docs-deploy-firebase.yml +++ b/.github/workflows/docs-deploy-firebase.yml @@ -146,7 +146,7 @@ jobs: - uses: r7kamura/rust-problem-matchers@v1.4.0 - name: Install last version of Protoc - uses: arduino/setup-protoc@v2.1.0 + uses: arduino/setup-protoc@v3.0.0 with: version: '23.x' repo-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/docs-dockerhub-description.yml b/.github/workflows/docs-dockerhub-description.yml index e20b12664..010e3ef9f 100644 --- a/.github/workflows/docs-dockerhub-description.yml +++ b/.github/workflows/docs-dockerhub-description.yml @@ -22,7 +22,7 @@ jobs: persist-credentials: false - name: Docker Hub Description - uses: peter-evans/dockerhub-description@v3.4.2 + uses: peter-evans/dockerhub-description@v4.0.0 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_PASSWORD }} diff --git a/.github/workflows/sub-build-docker-image.yml b/.github/workflows/sub-build-docker-image.yml index b8f716f74..82b033806 100644 --- a/.github/workflows/sub-build-docker-image.yml +++ b/.github/workflows/sub-build-docker-image.yml @@ -89,7 +89,7 @@ jobs: # Automatic tag management and OCI Image Format Specification for labels - name: Docker meta id: meta - uses: docker/metadata-action@v5.5.0 + uses: docker/metadata-action@v5.5.1 with: # list of Docker images to use as base name for tags images: | diff --git a/.github/workflows/sub-build-lightwalletd.yml b/.github/workflows/sub-build-lightwalletd.yml index 91f55d00d..bc900c796 100644 --- a/.github/workflows/sub-build-lightwalletd.yml +++ b/.github/workflows/sub-build-lightwalletd.yml @@ -76,7 +76,7 @@ jobs: # Automatic tag management and OCI Image Format Specification for labels - name: Docker meta id: meta - uses: docker/metadata-action@v5.5.0 + uses: docker/metadata-action@v5.5.1 with: # list of Docker images to use as base name for tags images: |