From 8824dfeadaa77e5b5e6ea1d20f3b9a916f665dd0 Mon Sep 17 00:00:00 2001 From: nialdaly Date: Thu, 9 Jan 2025 10:50:31 +0000 Subject: [PATCH] Remove unused composite action --- .github/actions/action.yml | 23 ----------------------- .github/workflows/integration.yml | 4 +--- 2 files changed, 1 insertion(+), 26 deletions(-) delete mode 100644 .github/actions/action.yml diff --git a/.github/actions/action.yml b/.github/actions/action.yml deleted file mode 100644 index 8cf0fb1..0000000 --- a/.github/actions/action.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: Docker Image Cache -description: Cache Docker images - -inputs: - images: - description: List of Docker images to cache (space-separated) - required: true - -runs: - using: composite - steps: - - name: Cache Docker images - id: docker-cache - uses: actions/cache@v3 - with: - path: /tmp/docker-cache - key: ${{ runner.os }}-docker-${{ hashFiles('docker-images.txt') }} - - - name: Load cached Docker images - if: steps.docker-cache.outputs.cache-hit == 'true' - shell: bash - run: | - docker load < /tmp/docker-cache/pulled-images.tar || true diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 4d6fc96..a69dfde 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -42,9 +42,7 @@ jobs: - name: Load cached image if: steps.cloud-provider-kind-cache.outputs.cache-hit == 'true' - run: | - docker load < /tmp/cloud-provider-kind-image - docker image ls + run: docker load < /tmp/cloud-provider-kind-image - name: Set up Docker Buildx if: steps.cloud-provider-kind-cache.outputs.cache-hit != 'true'