Skip to content

Commit

Permalink
Update docker/build-push-action action to v6
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Oct 16, 2024
1 parent 4b7e11e commit b1fe0d6
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/alpine-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
username: ${{ secrets.QUAY_USERNAME }}
password: ${{ secrets.QUAY_PASSWORD }}
- name: Build and push alpine
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: alpine
push: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/busybox-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
username: ${{ secrets.QUAY_USERNAME }}
password: ${{ secrets.QUAY_PASSWORD }}
- name: Build and push busybox
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: busybox
push: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fedora-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
username: ${{ secrets.QUAY_USERNAME }}
password: ${{ secrets.QUAY_PASSWORD }}
- name: Build and push fedora
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: fedora
push: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/golang-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
username: ${{ secrets.QUAY_USERNAME }}
password: ${{ secrets.QUAY_PASSWORD }}
- name: Build and push golang
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: golang
push: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/openjdk-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
username: ${{ secrets.QUAY_USERNAME }}
password: ${{ secrets.QUAY_PASSWORD }}
- name: Build and push openjdk
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: openjdk
push: true
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/pr-opened-or-edited.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,63 +38,63 @@ jobs:
ubuntu:
- 'ubuntu/**'
- name: Build and push alpine
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
if: steps.filter.outputs.alpine == 'true'
with:
context: alpine
push: true
tags: ttl.sh/cloud-dev-images-alpine
- name: Build and push busybox
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
if: steps.filter.outputs.busybox == 'true'
with:
context: busybox
push: true
tags: ttl.sh/cloud-dev-images-busybox
- name: Build and push docker
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
if: steps.filter.outputs.docker == 'true'
with:
context: docker
push: true
tags: ttl.sh/cloud-dev-images-docker
- name: Build and push fedora
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
if: steps.filter.outputs.fedora == 'true'
with:
context: fedora
push: true
tags: ttl.sh/cloud-dev-images-fedora
- name: Build and push golang
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
if: steps.filter.outputs.golang == 'true'
with:
context: golang
push: true
tags: ttl.sh/cloud-dev-images-golang
- name: Build and push openjdk
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
if: steps.filter.outputs.openjdk == 'true'
with:
context: openjdk
push: true
tags: ttl.sh/cloud-dev-images-openjdk
- name: Build and push ubi8
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
if: steps.filter.outputs.ubi8 == 'true'
with:
context: ubi8
push: true
tags: ttl.sh/cloud-dev-images-ubi8
- name: Build and push ubi9
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
if: steps.filter.outputs.ubi9 == 'true'
with:
context: ubi9
push: true
tags: ttl.sh/cloud-dev-images-ubi9
- name: Build and push ubuntu
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
if: steps.filter.outputs.ubuntu == 'true'
with:
context: ubuntu
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ubi8-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
username: ${{ secrets.QUAY_USERNAME }}
password: ${{ secrets.QUAY_PASSWORD }}
- name: Build and push alpine
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: ubi8
push: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ubi9-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
username: ${{ secrets.QUAY_USERNAME }}
password: ${{ secrets.QUAY_PASSWORD }}
- name: Build and push ubi9
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: ubi9
push: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
username: ${{ secrets.QUAY_USERNAME }}
password: ${{ secrets.QUAY_PASSWORD }}
- name: Build and push ubuntu
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: ubuntu
push: true
Expand Down

0 comments on commit b1fe0d6

Please sign in to comment.