From f1e447ab6a1995a6bae9ddc3165a93269adcea34 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Mar 2026 20:55:33 +0000 Subject: [PATCH] build: bump the actions-deps group with 4 updates Bumps the actions-deps group with 4 updates: [docker/login-action](https://github.com/docker/login-action), [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action), [docker/metadata-action](https://github.com/docker/metadata-action) and [docker/build-push-action](https://github.com/docker/build-push-action). 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/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/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) --- updated-dependencies: - dependency-name: docker/login-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps - dependency-name: docker/setup-buildx-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps - dependency-name: docker/metadata-action dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps - dependency-name: docker/build-push-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps ... Signed-off-by: dependabot[bot] --- .github/workflows/medcat-model-distributor_build.yml | 8 ++++---- .github/workflows/medcat-service_docker.yml | 12 ++++++------ .github/workflows/medcat-trainer-v1_qa.yml | 2 +- .github/workflows/medcat-trainer-v1_release.yml | 2 +- .github/workflows/medcat-trainer_ci.yml | 10 +++++----- 5 files changed, 17 insertions(+), 17 deletions(-) diff --git a/.github/workflows/medcat-model-distributor_build.yml b/.github/workflows/medcat-model-distributor_build.yml index 73d5c5137..ee2ee017a 100644 --- a/.github/workflows/medcat-model-distributor_build.yml +++ b/.github/workflows/medcat-model-distributor_build.yml @@ -64,17 +64,17 @@ jobs: uses: actions/checkout@v6 - name: Log in to Docker Hub - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 + uses: docker/setup-buildx-action@v4 - name: Extract metadata (tags, labels) for Docker medcat-model-distributor id: meta - uses: docker/metadata-action@v5 + uses: docker/metadata-action@v6 with: images: cogstacksystems/medcat-model-distributor tags: | @@ -90,7 +90,7 @@ jobs: - name: Build and push Docker medcat-model-distributor image id: docker_build - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 with: context: ./medcat-model-distributor/webapp push: true diff --git a/.github/workflows/medcat-service_docker.yml b/.github/workflows/medcat-service_docker.yml index 0661eaff7..6e7aeec67 100644 --- a/.github/workflows/medcat-service_docker.yml +++ b/.github/workflows/medcat-service_docker.yml @@ -41,17 +41,17 @@ jobs: df -h # Optional: Check space before build - name: Log in to Docker Hub - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 + uses: docker/setup-buildx-action@v4 - name: Extract metadata (tags, labels) for Docker MedCATservice id: meta - uses: docker/metadata-action@v5 + uses: docker/metadata-action@v6 with: images: cogstacksystems/medcat-service tags: | @@ -72,7 +72,7 @@ jobs: - name: Build and push Docker MedCATservice image id: docker_build - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 with: context: ./medcat-service/ push: true @@ -86,7 +86,7 @@ jobs: - name: Extract metadata (tags, labels) for Docker MedCATservice-gpu id: meta-gpu - uses: docker/metadata-action@v5 + uses: docker/metadata-action@v6 with: images: cogstacksystems/medcat-service-gpu tags: | @@ -106,7 +106,7 @@ jobs: - name: Build and push Docker Jupyter singleuser image with GPU support id: docker_build_gpu - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 with: context: ./medcat-service/ file : "./medcat-service/Dockerfile_gpu" diff --git a/.github/workflows/medcat-trainer-v1_qa.yml b/.github/workflows/medcat-trainer-v1_qa.yml index 7ea4015a3..ef937f81c 100644 --- a/.github/workflows/medcat-trainer-v1_qa.yml +++ b/.github/workflows/medcat-trainer-v1_qa.yml @@ -30,7 +30,7 @@ jobs: docker run --rm cogstacksystems/medcat-trainer:v1-latest python manage.py test - name: Login to DockerHub - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} diff --git a/.github/workflows/medcat-trainer-v1_release.yml b/.github/workflows/medcat-trainer-v1_release.yml index ce8120b0f..29659cfc2 100644 --- a/.github/workflows/medcat-trainer-v1_release.yml +++ b/.github/workflows/medcat-trainer-v1_release.yml @@ -35,7 +35,7 @@ jobs: docker run --rm cogstacksystems/medcat-trainer:$IMAGE_TAG python manage.py test - name: Login to DockerHub - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} diff --git a/.github/workflows/medcat-trainer_ci.yml b/.github/workflows/medcat-trainer_ci.yml index a4d453f13..192c6a826 100644 --- a/.github/workflows/medcat-trainer_ci.yml +++ b/.github/workflows/medcat-trainer_ci.yml @@ -158,17 +158,17 @@ jobs: ref: ${{ github.ref }} - name: Log in to Docker Hub - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 + uses: docker/setup-buildx-action@v4 - name: Extract metadata (tags, labels) for Docker MedCATtrainer id: meta - uses: docker/metadata-action@v5 + uses: docker/metadata-action@v6 with: images: cogstacksystems/medcat-trainer tags: | @@ -186,7 +186,7 @@ jobs: - name: Build Docker MedCATtrainer image for testing id: docker_build - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 with: context: ./medcat-trainer/webapp/ load: true # https://docs.docker.com/build/ci/github-actions/test-before-push/ @@ -202,7 +202,7 @@ jobs: - name: Push Docker MedCATtrainer image id: docker_build_push - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 with: context: ./medcat-trainer/webapp/ push: true