Skip to content

Commit

Permalink
[fix] docker-push-action version upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
mushroom1324 committed Dec 18, 2023
1 parent e257387 commit 958f8ab
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy_dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@ jobs:
run: ./gradlew bootJar

- name: Login to DockerHub
uses: docker/login-action@v1
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Docker app build & push
uses: docker/build-push-action@v2
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile
Expand All @@ -48,7 +48,7 @@ jobs:
tags: ${{ secrets.DOCKER_USERNAME }}/ceos-backend-dev

- name: Docker nginx build & push
uses: docker/build-push-action@v2
uses: docker/build-push-action@v5
with:
context: .
file: ./config/nginx/Dockerfile
Expand Down

0 comments on commit 958f8ab

Please sign in to comment.