From d2e4230951f89395ff004b8b6723c111eaec056e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 6 Mar 2026 08:41:52 +0000 Subject: [PATCH] Bump the actions group with 4 updates Bumps the actions group with 4 updates: [docker/metadata-action](https://github.com/docker/metadata-action), [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action), [docker/login-action](https://github.com/docker/login-action) and [docker/build-push-action](https://github.com/docker/build-push-action). 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/setup-buildx-action` from 3 to 4 - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](https://github.com/docker/setup-buildx-action/compare/v3...v4) 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/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) --- updated-dependencies: - dependency-name: docker/metadata-action dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: docker/setup-buildx-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: docker/login-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: docker/build-push-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/ci_cd_docker.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci_cd_docker.yml b/.github/workflows/ci_cd_docker.yml index df812335..29800bee 100644 --- a/.github/workflows/ci_cd_docker.yml +++ b/.github/workflows/ci_cd_docker.yml @@ -77,7 +77,7 @@ jobs: - name: Docker metadata (development) id: docker_metadata_dev - uses: docker/metadata-action@v5 + uses: docker/metadata-action@v6 with: images: | ${{ inputs.registry_url || 'ghcr.io' }}/${{ inputs.image_owner || 'emmc-asbl' }}/${{ inputs.image_name || 'oteapi' }} @@ -100,7 +100,7 @@ jobs: - name: Docker metadata (production) id: docker_metadata_prod - uses: docker/metadata-action@v5 + uses: docker/metadata-action@v6 with: images: | ${{ inputs.registry_url || 'ghcr.io' }}/${{ inputs.image_owner || 'emmc-asbl' }}/${{ inputs.image_name || 'oteapi' }} @@ -118,17 +118,17 @@ jobs: oteapi=production - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 + uses: docker/setup-buildx-action@v4 - name: Login to Container Registry - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: ${{ inputs.registry_url || 'ghcr.io' }} username: ${{ secrets.REGISTRY_USER || github.actor }} password: ${{ secrets.REGISTRY_PASSWORD || secrets.GITHUB_TOKEN }} - name: Build and push (development) - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 with: context: . file: ./Dockerfile @@ -147,7 +147,7 @@ jobs: GIT_AUTH_TOKEN=${{ secrets.PAT || secrets.RELEASE_PAT }} - name: Build and push (production) - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 with: context: . file: ./Dockerfile