Skip to content

Commit e775db3

Browse files
remyluslosiusclaude
andcommitted
fix(ci): correct Docker action versions to latest valid releases
docker/login-action@v4 and docker/setup-buildx-action@v4 don't exist, causing "Build and Push Docker Images" job to fail on every CI run. Reverts to @V3 (latest major). Also aligns build-push-action to @v6 across all workflows for consistency. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 4d00cc6 commit e775db3

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -621,10 +621,10 @@ jobs:
621621
uses: actions/checkout@v5
622622

623623
- name: Set up Docker Buildx
624-
uses: docker/setup-buildx-action@v4
624+
uses: docker/setup-buildx-action@v3
625625

626626
- name: Log in to GitHub Container Registry
627-
uses: docker/login-action@v4
627+
uses: docker/login-action@v3
628628
with:
629629
registry: ghcr.io
630630
username: ${{ github.actor }}

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ jobs:
182182
password: ${{ secrets.GITHUB_TOKEN }}
183183

184184
- name: Build and push backend image
185-
uses: docker/build-push-action@v5
185+
uses: docker/build-push-action@v6
186186
with:
187187
context: .
188188
file: ./docker/Dockerfile.backend
@@ -194,7 +194,7 @@ jobs:
194194
cache-to: type=gha,mode=max
195195

196196
- name: Build and push frontend image
197-
uses: docker/build-push-action@v5
197+
uses: docker/build-push-action@v6
198198
with:
199199
context: .
200200
file: ./docker/Dockerfile.frontend

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101
password: ${{ secrets.GITHUB_TOKEN }}
102102

103103
- name: Build and push backend image
104-
uses: docker/build-push-action@v5
104+
uses: docker/build-push-action@v6
105105
with:
106106
context: .
107107
file: ./docker/Dockerfile.backend
@@ -114,7 +114,7 @@ jobs:
114114
cache-to: type=gha,mode=max
115115

116116
- name: Build and push frontend image
117-
uses: docker/build-push-action@v5
117+
uses: docker/build-push-action@v6
118118
with:
119119
context: .
120120
file: ./docker/Dockerfile.frontend

0 commit comments

Comments
 (0)