Skip to content

Commit 90fd0b2

Browse files
chore(deps): update docker/build-push-action action to v7
1 parent 0f166f3 commit 90fd0b2

10 files changed

Lines changed: 18 additions & 18 deletions

.github/workflows/alpine-build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
username: ${{ secrets.QUAY_USERNAME }}
2323
password: ${{ secrets.QUAY_PASSWORD }}
2424
- name: Build and push alpine
25-
uses: docker/build-push-action@v6
25+
uses: docker/build-push-action@v7
2626
with:
2727
context: alpine
2828
push: true

.github/workflows/busybox-build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
username: ${{ secrets.QUAY_USERNAME }}
2323
password: ${{ secrets.QUAY_PASSWORD }}
2424
- name: Build and push busybox
25-
uses: docker/build-push-action@v6
25+
uses: docker/build-push-action@v7
2626
with:
2727
context: busybox
2828
push: true

.github/workflows/docker-build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
username: ${{ secrets.QUAY_USERNAME }}
2323
password: ${{ secrets.QUAY_PASSWORD }}
2424
- name: Build and push docker
25-
uses: docker/build-push-action@v6
25+
uses: docker/build-push-action@v7
2626
with:
2727
context: docker
2828
push: true

.github/workflows/fedora-build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
username: ${{ secrets.QUAY_USERNAME }}
2323
password: ${{ secrets.QUAY_PASSWORD }}
2424
- name: Build and push fedora
25-
uses: docker/build-push-action@v6
25+
uses: docker/build-push-action@v7
2626
with:
2727
context: fedora
2828
push: true

.github/workflows/golang-build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
username: ${{ secrets.QUAY_USERNAME }}
2323
password: ${{ secrets.QUAY_PASSWORD }}
2424
- name: Build and push golang
25-
uses: docker/build-push-action@v6
25+
uses: docker/build-push-action@v7
2626
with:
2727
context: golang
2828
push: true

.github/workflows/openjdk-build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
username: ${{ secrets.QUAY_USERNAME }}
2323
password: ${{ secrets.QUAY_PASSWORD }}
2424
- name: Build and push openjdk
25-
uses: docker/build-push-action@v6
25+
uses: docker/build-push-action@v7
2626
with:
2727
context: openjdk
2828
push: true

.github/workflows/pr-opened-or-edited.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -38,63 +38,63 @@ jobs:
3838
ubuntu:
3939
- 'ubuntu/**'
4040
- name: Build and push alpine
41-
uses: docker/build-push-action@v6
41+
uses: docker/build-push-action@v7
4242
if: steps.filter.outputs.alpine == 'true'
4343
with:
4444
context: alpine
4545
push: true
4646
tags: ttl.sh/cloud-dev-images-alpine
4747
- name: Build and push busybox
48-
uses: docker/build-push-action@v6
48+
uses: docker/build-push-action@v7
4949
if: steps.filter.outputs.busybox == 'true'
5050
with:
5151
context: busybox
5252
push: true
5353
tags: ttl.sh/cloud-dev-images-busybox
5454
- name: Build and push docker
55-
uses: docker/build-push-action@v6
55+
uses: docker/build-push-action@v7
5656
if: steps.filter.outputs.docker == 'true'
5757
with:
5858
context: docker
5959
push: true
6060
tags: ttl.sh/cloud-dev-images-docker
6161
- name: Build and push fedora
62-
uses: docker/build-push-action@v6
62+
uses: docker/build-push-action@v7
6363
if: steps.filter.outputs.fedora == 'true'
6464
with:
6565
context: fedora
6666
push: true
6767
tags: ttl.sh/cloud-dev-images-fedora
6868
- name: Build and push golang
69-
uses: docker/build-push-action@v6
69+
uses: docker/build-push-action@v7
7070
if: steps.filter.outputs.golang == 'true'
7171
with:
7272
context: golang
7373
push: true
7474
tags: ttl.sh/cloud-dev-images-golang
7575
- name: Build and push openjdk
76-
uses: docker/build-push-action@v6
76+
uses: docker/build-push-action@v7
7777
if: steps.filter.outputs.openjdk == 'true'
7878
with:
7979
context: openjdk
8080
push: true
8181
tags: ttl.sh/cloud-dev-images-openjdk
8282
- name: Build and push ubi8
83-
uses: docker/build-push-action@v6
83+
uses: docker/build-push-action@v7
8484
if: steps.filter.outputs.ubi8 == 'true'
8585
with:
8686
context: ubi8
8787
push: true
8888
tags: ttl.sh/cloud-dev-images-ubi8
8989
- name: Build and push ubi9
90-
uses: docker/build-push-action@v6
90+
uses: docker/build-push-action@v7
9191
if: steps.filter.outputs.ubi9 == 'true'
9292
with:
9393
context: ubi9
9494
push: true
9595
tags: ttl.sh/cloud-dev-images-ubi9
9696
- name: Build and push ubuntu
97-
uses: docker/build-push-action@v6
97+
uses: docker/build-push-action@v7
9898
if: steps.filter.outputs.ubuntu == 'true'
9999
with:
100100
context: ubuntu

.github/workflows/ubi8-build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
username: ${{ secrets.QUAY_USERNAME }}
2323
password: ${{ secrets.QUAY_PASSWORD }}
2424
- name: Build and push alpine
25-
uses: docker/build-push-action@v6
25+
uses: docker/build-push-action@v7
2626
with:
2727
context: ubi8
2828
push: true

.github/workflows/ubi9-build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
username: ${{ secrets.QUAY_USERNAME }}
2323
password: ${{ secrets.QUAY_PASSWORD }}
2424
- name: Build and push ubi9
25-
uses: docker/build-push-action@v6
25+
uses: docker/build-push-action@v7
2626
with:
2727
context: ubi9
2828
push: true

.github/workflows/ubuntu-build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
username: ${{ secrets.QUAY_USERNAME }}
2323
password: ${{ secrets.QUAY_PASSWORD }}
2424
- name: Build and push ubuntu
25-
uses: docker/build-push-action@v6
25+
uses: docker/build-push-action@v7
2626
with:
2727
context: ubuntu
2828
push: true

0 commit comments

Comments
 (0)