From 0c9d5e4fd2ae39fcfc63661e137d03b32ac45700 Mon Sep 17 00:00:00 2001 From: nicholasSSUSE Date: Tue, 10 Dec 2024 15:41:32 -0300 Subject: [PATCH] updating dependencies for gha job --- .github/workflows/build.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 00c42da42f..976b20664d 100755 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -13,7 +13,13 @@ jobs: container: registry.suse.com/bci/bci-base:latest steps: - name: install dependencies - run: zypper install -y docker jq git + run: zypper --non-interactive install docker jq git make + - name: install gh + run: | + mkdir -p /tmp/gh + curl -fsL https://github.com/cli/cli/releases/download/v2.63.2/gh_2.63.2_linux_amd64.tar.gz | tar xvzf - --strip-components=1 -C /tmp/gh + mv /tmp/gh/bin/gh /usr/bin/gh + chmod +x /usr/bin/gh - name: Checkout code uses: actions/checkout@v4 - name: Git safe directory