From 1f013a3ff35d3a8e7f58f59916c5cf278f288a77 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 29 Mar 2026 17:40:06 +0000 Subject: [PATCH] chore(deps): bump the dependencies group with 5 updates Bumps the dependencies group with 5 updates: | Package | From | To | | --- | --- | --- | | [docker/login-action](https://github.com/docker/login-action) | `3` | `4` | | [docker/metadata-action](https://github.com/docker/metadata-action) | `5` | `6` | | [docker/build-push-action](https://github.com/docker/build-push-action) | `6` | `7` | | [actions/create-github-app-token](https://github.com/actions/create-github-app-token) | `2` | `3` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `5` | `6` | Updates `docker/login-action` from 3 to 4 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](https://github.com/docker/login-action/compare/v3...v4) Updates `docker/metadata-action` from 5 to 6 - [Release notes](https://github.com/docker/metadata-action/releases) - [Commits](https://github.com/docker/metadata-action/compare/v5...v6) Updates `docker/build-push-action` from 6 to 7 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v6...v7) Updates `actions/create-github-app-token` from 2 to 3 - [Release notes](https://github.com/actions/create-github-app-token/releases) - [Commits](https://github.com/actions/create-github-app-token/compare/v2...v3) Updates `codecov/codecov-action` from 5 to 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/v5...v6) --- updated-dependencies: - dependency-name: docker/login-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: docker/metadata-action dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: docker/build-push-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: actions/create-github-app-token dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: codecov/codecov-action dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/docker.yml | 6 +++--- .github/workflows/release-plz.yml | 4 ++-- .github/workflows/rust.yml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 3c80c7e1..a718ed16 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -27,7 +27,7 @@ jobs: submodules: recursive - name: Log in to the Container registry - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: ${{ env.REGISTRY }} username: ${{ github.actor }} @@ -35,12 +35,12 @@ jobs: - name: Extract metadata (tags, labels) for Docker id: meta - uses: docker/metadata-action@v5 + uses: docker/metadata-action@v6 with: images: ${{ env.REGISTRY }}/cot-rs/cot-site - name: Build and push Docker image - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 with: context: docs/ push: ${{ github.ref == 'refs/heads/master' }} diff --git a/.github/workflows/release-plz.yml b/.github/workflows/release-plz.yml index 7fe8e2e2..cb30f98d 100644 --- a/.github/workflows/release-plz.yml +++ b/.github/workflows/release-plz.yml @@ -16,7 +16,7 @@ jobs: id-token: write steps: - name: Generate GitHub token - uses: actions/create-github-app-token@v2 + uses: actions/create-github-app-token@v3 id: generate-token with: app-id: ${{ secrets.COTBOT_APP_ID }} @@ -46,7 +46,7 @@ jobs: cancel-in-progress: false steps: - name: Generate GitHub token - uses: actions/create-github-app-token@v2 + uses: actions/create-github-app-token@v3 id: generate-token with: app-id: ${{ secrets.COTBOT_APP_ID }} diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 46523959..8b6afb0f 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -237,7 +237,7 @@ jobs: - name: Merge code coverage reports run: cargo llvm-cov report --codecov --output-path codecov.json - - uses: codecov/codecov-action@v5 + - uses: codecov/codecov-action@v6 with: files: codecov.json flags: rust