Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update docker/build-push-action action to v6 #521

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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
26 changes: 13 additions & 13 deletions .github/actions/variations/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ runs:
using: "composite"
steps:
- name: Build and Push lovely
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: variations/Dockerfile.nover
Expand All @@ -20,7 +20,7 @@ runs:
PARENT=ghcr.io/crumbhole/argocd-lovely-plugin-cmp
NAME=lovely
- name: Build and Push lovely-vault-ver
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: variations/Dockerfile.vault
Expand All @@ -32,7 +32,7 @@ runs:
PARENT=ghcr.io/crumbhole/argocd-lovely-plugin-cmp
NAME=lovely-vault-ver
- name: Build and Push lovely-vault
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: variations/Dockerfile.nover
Expand All @@ -44,7 +44,7 @@ runs:
PARENT=ghcr.io/crumbhole/lovely-vault-ver
NAME=lovely-vault
- name: Build and Push lovely-vault-plugin-ver
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: variations/Dockerfile.vault-plugin
Expand All @@ -56,7 +56,7 @@ runs:
PARENT=ghcr.io/crumbhole/argocd-lovely-plugin-cmp
NAME=lovely-vault-plugin-ver
- name: Build and Push lovely-vault-plugin
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: variations/Dockerfile.nover
Expand All @@ -68,7 +68,7 @@ runs:
PARENT=ghcr.io/crumbhole/lovely-vault-plugin-ver
NAME=lovely-vault-plugin
- name: Build and Push lovely-hera-ver
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: variations/Dockerfile.hera
Expand All @@ -80,7 +80,7 @@ runs:
PARENT=ghcr.io/crumbhole/argocd-lovely-plugin-cmp
NAME=lovely-hera-ver
- name: Build and Push lovely-hera
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: variations/Dockerfile.nover
Expand All @@ -92,7 +92,7 @@ runs:
PARENT=ghcr.io/crumbhole/lovely-hera-ver
NAME=lovely-hera
- name: Build and Push lovely-hera-vault-ver
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: variations/Dockerfile.vault
Expand All @@ -104,7 +104,7 @@ runs:
PARENT=ghcr.io/crumbhole/lovely-hera-ver
NAME=lovely-hera-vault-ver
- name: Build and Push lovely-hera-vault
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: variations/Dockerfile.nover
Expand All @@ -116,7 +116,7 @@ runs:
PARENT=ghcr.io/crumbhole/lovely-hera-vault-ver
NAME=lovely-hera-vault
- name: Build and Push lovely-hera-vault-plugin-ver
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: variations/Dockerfile.vault-plugin
Expand All @@ -128,7 +128,7 @@ runs:
PARENT=ghcr.io/crumbhole/lovely-hera-ver
NAME=lovely-hera-vault-plugin-ver
- name: Build and Push lovely-hera-vault-plugin
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: variations/Dockerfile.nover
Expand All @@ -140,7 +140,7 @@ runs:
PARENT=ghcr.io/crumbhole/lovely-hera-vault-plugin-ver
NAME=lovely-hera-vault-plugin
- name: Build and Push lovely-ytt-ver
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: variations/Dockerfile.ytt
Expand All @@ -152,7 +152,7 @@ runs:
PARENT=ghcr.io/crumbhole/argocd-lovely-plugin-cmp
NAME=lovely-ytt-ver
- name: Build and Push lovely-ytt
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: variations/Dockerfile.nover
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ jobs:
username: ${{ github.repository_owner }}
password: ${{ secrets.CR_PAT }}
- name: Build sidecar image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: ./Dockerfile
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
username: ${{ github.repository_owner }}
password: ${{ secrets.CR_PAT }}
- name: Build sidecar image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: ./Dockerfile
Expand Down
Loading