From 2561940ae48b8e138497f1a160dfb364b701985a Mon Sep 17 00:00:00 2001 From: Tobias Ibounig Date: Wed, 7 Feb 2024 00:08:38 +0100 Subject: [PATCH] install yq from snap --- .github/workflows/aligulac-import.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/aligulac-import.yaml b/.github/workflows/aligulac-import.yaml index 00518e6..eab2633 100644 --- a/.github/workflows/aligulac-import.yaml +++ b/.github/workflows/aligulac-import.yaml @@ -22,7 +22,9 @@ jobs: steps: - name: Install postgres client - run: sudo apt-get install -y postgresql-client yq + run: sudo apt-get install -y postgresql-client + - name: Install yq + run: snap install yq --channel=v3/stable - name: Postgres client version run: psql --version - name: Check out repository code