Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/medcat-model-distributor_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/medcat-service_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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
Expand All @@ -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: |
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/medcat-trainer-v1_qa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/medcat-trainer-v1_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/medcat-trainer_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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/
Expand All @@ -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
Expand Down
Loading