From e16f71fcac372f7ef331d7025033795103cde527 Mon Sep 17 00:00:00 2001 From: Salah Al Saleh Date: Thu, 18 Jul 2024 05:29:21 +0000 Subject: [PATCH] f --- .../build-dep-image-with-apko/action.yml | 32 ------------------- .github/workflows/image-deps-updater.yaml | 3 -- 2 files changed, 35 deletions(-) delete mode 100644 .github/actions/build-dep-image-with-apko/action.yml diff --git a/.github/actions/build-dep-image-with-apko/action.yml b/.github/actions/build-dep-image-with-apko/action.yml deleted file mode 100644 index fae3c509c3..0000000000 --- a/.github/actions/build-dep-image-with-apko/action.yml +++ /dev/null @@ -1,32 +0,0 @@ -name: 'Build and push a dep image with apko' -description: 'Composite action for building and pushing a dep image with apko' -inputs: - apko-config: - description: 'Path to apko config' - required: true - - image-name: - description: 'Full destination image name' - required: true - - registry-username: - description: 'Username to login to registry' - default: '' - required: false - - registry-password: - description: 'Password to login to registry' - default: '' - required: false - -runs: - using: "composite" - steps: - - uses: chainguard-images/actions/apko-publish@main - with: - config: ${{ inputs.apko-config }} - archs: amd64 - tag: ${{ inputs.image-name }} - vcs-url: true - generic-user: ${{ inputs.registry-username }} - generic-pass: ${{ inputs.registry-password }} diff --git a/.github/workflows/image-deps-updater.yaml b/.github/workflows/image-deps-updater.yaml index e9c9e6ab3e..721239fd5b 100644 --- a/.github/workflows/image-deps-updater.yaml +++ b/.github/workflows/image-deps-updater.yaml @@ -15,9 +15,6 @@ on: jobs: update-k0s-images: runs-on: ubuntu-20.04 - outputs: - components: ${{ steps.get-versions.outputs.components }} - steps: - name: Checkout uses: actions/checkout@v4