Skip to content

Commit 4f1a8df

Browse files
authored
fix(ci): standardize workflow names (#1753)
1 parent 0abd991 commit 4f1a8df

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/deploy-staging.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ permissions:
1919

2020
jobs:
2121
deploy:
22-
name: Deploy staging
22+
name: Deploy release to staging
2323
runs-on: ubuntu-latest
2424

2525
steps:

.github/workflows/publish-docker-images.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ permissions:
2222

2323
jobs:
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
@@ -67,7 +67,7 @@ jobs:
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
@@ -78,7 +78,7 @@ jobs:
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

Comments
 (0)