@@ -22,7 +22,7 @@ permissions:
2222
2323jobs :
2424 publish :
25- name : Publish Docker images
25+ name : Build and push Docker images
2626 runs-on : ubuntu-latest
2727
2828 steps :
@@ -47,16 +47,16 @@ jobs:
4747 echo "Minor tag: ${minor_tag}"
4848
4949 - name : Log in to Docker Hub
50- uses : docker/login-action@v3
50+ uses : docker/login-action@v4
5151 with :
5252 username : ${{ secrets.DOCKERHUB_USERNAME }}
5353 password : ${{ secrets.DOCKERHUB_TOKEN }}
5454
5555 - name : Set up Docker Buildx
56- uses : docker/setup-buildx-action@v3
56+ uses : docker/setup-buildx-action@v4
5757
5858 - name : Build and push compass-backend
59- uses : docker/build-push-action@v6
59+ uses : docker/build-push-action@v7
6060 with :
6161 context : .
6262 file : self-host/Dockerfile.backend
6767 switchbacktech/compass-backend:latest
6868
6969 - name : Build and push compass-mongo
70- uses : docker/build-push-action@v6
70+ uses : docker/build-push-action@v7
7171 with :
7272 context : .
7373 file : self-host/Dockerfile.mongo
7878 switchbacktech/compass-mongo:latest
7979
8080 - name : Build and push compass-web
81- uses : docker/build-push-action@v6
81+ uses : docker/build-push-action@v7
8282 with :
8383 context : .
8484 file : self-host/Dockerfile.web
0 commit comments