From 7ecd015b41a14e7458bc59963febbf19e62fc79f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Han?= Date: Mon, 3 Nov 2025 12:16:40 +0100 Subject: [PATCH] chore: remove yq install on CI MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit No more YAML processing, the spec is JSON. Signed-off-by: Sébastien Han --- .github/workflows/conformance.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/workflows/conformance.yml b/.github/workflows/conformance.yml index 112e4a408..9756a6e58 100644 --- a/.github/workflows/conformance.yml +++ b/.github/workflows/conformance.yml @@ -87,12 +87,6 @@ jobs: sudo cp ~/oasdiff /usr/local/bin/oasdiff sudo chmod +x /usr/local/bin/oasdiff - # Install yq for YAML processing - - name: Install yq - run: | - sudo wget -qO /usr/local/bin/yq https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 - sudo chmod +x /usr/local/bin/yq - # Verify API specs exist for conformance testing - name: Check API Specs if: steps.skip-check.outputs.skip != 'true'