From d520bd1a6516d183f6d148b04734edb90e069f82 Mon Sep 17 00:00:00 2001 From: Salah Aldeen Al Saleh Date: Fri, 22 Dec 2023 16:24:04 +0000 Subject: [PATCH] Fix image-deps-update action overwrite input --- .github/workflows/image-deps-updater.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/image-deps-updater.yaml b/.github/workflows/image-deps-updater.yaml index fe57dfda89..85a6a2aaab 100644 --- a/.github/workflows/image-deps-updater.yaml +++ b/.github/workflows/image-deps-updater.yaml @@ -45,7 +45,7 @@ jobs: image-name: index.docker.io/kotsadm/minio:${{ steps.get-tags.outputs.minio-tag }} registry-username: ${{ secrets.DOCKERHUB_USER }} registry-password: ${{ secrets.DOCKERHUB_PASSWORD }} - overwrite: ${{ github.event.inputs.overwrite }} + overwrite: ${{ github.event.inputs.overwrite || 'false' }} - name: Build and push rqlite image uses: ./.github/actions/build-push-image-with-apko @@ -54,7 +54,7 @@ jobs: image-name: index.docker.io/kotsadm/rqlite:${{ steps.get-tags.outputs.rqlite-tag }} registry-username: ${{ secrets.DOCKERHUB_USER }} registry-password: ${{ secrets.DOCKERHUB_PASSWORD }} - overwrite: ${{ github.event.inputs.overwrite }} + overwrite: ${{ github.event.inputs.overwrite || 'false' }} - name: Build and push dex image uses: ./.github/actions/build-push-image-with-apko @@ -63,7 +63,7 @@ jobs: image-name: index.docker.io/kotsadm/dex:${{ steps.get-tags.outputs.dex-tag }} registry-username: ${{ secrets.DOCKERHUB_USER }} registry-password: ${{ secrets.DOCKERHUB_PASSWORD }} - overwrite: ${{ github.event.inputs.overwrite }} + overwrite: ${{ github.event.inputs.overwrite || 'false' }} update-image-deps: