Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/build-minio-manually.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
password: ${{ secrets.DAOCLOUD_HARBOR_TOKEN }}

- name: Build and Push Multi-Arch Image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: ./images/minio
file: ./images/minio/Dockerfile.release
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-push-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3.10.0
- name: Build && Push
uses: docker/build-push-action@v6.18.0
uses: docker/build-push-action@v6
with:
context: ./images/${{ inputs.job }}
file: ./images/${{ inputs.job }}/Dockerfile
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:

- name: Build for test multi-platform
if: steps.check-changes.outputs.has_changes == 'true'
uses: docker/build-push-action@v6.18.0
uses: docker/build-push-action@v6
with:
context: ./images/${{ matrix.target }}
file: ./images/${{ matrix.target }}/Dockerfile
Expand All @@ -61,7 +61,7 @@ jobs:

- name: Build for scan vulnerabilities
if: steps.check-changes.outputs.has_changes == 'true'
uses: docker/build-push-action@v6.18.0
uses: docker/build-push-action@v6
with:
context: ./images/${{ matrix.target }}
file: ./images/${{ matrix.target }}/Dockerfile
Expand Down