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/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@v6
uses: docker/build-push-action@v7
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@v6
uses: docker/build-push-action@v7
with:
context: busybox
push: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-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 docker
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: docker
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@v6
uses: docker/build-push-action@v7
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@v6
uses: docker/build-push-action@v7
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@v6
uses: docker/build-push-action@v7
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@v6
uses: docker/build-push-action@v7
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@v6
uses: docker/build-push-action@v7
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@v6
uses: docker/build-push-action@v7
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@v6
uses: docker/build-push-action@v7
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@v6
uses: docker/build-push-action@v7
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@v6
uses: docker/build-push-action@v7
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@v6
uses: docker/build-push-action@v7
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@v6
uses: docker/build-push-action@v7
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@v6
uses: docker/build-push-action@v7
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@v6
uses: docker/build-push-action@v7
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@v6
uses: docker/build-push-action@v7
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@v6
uses: docker/build-push-action@v7
with:
context: ubuntu
push: true
Expand Down