Skip to content

Commit

Permalink
installing yq
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholasSUSE committed Dec 11, 2024
1 parent d81f560 commit 43347d8
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
container: registry.suse.com/bci/bci-base:latest
steps:
- name: install dependencies
run: zypper --non-interactive install docker jq git make go awk yq
run: zypper --non-interactive install docker jq git make go awk
- name: install gh
env:
GH_VERSION: 2.63.2
Expand All @@ -23,6 +23,14 @@ jobs:
mv /tmp/gh/bin/gh /usr/bin/gh
chmod +x /usr/bin/gh
- name: install yq
env:
YQ_URL: "v4.16.1"
run: |
curl -fsL https://github.com/mikefarah/yq/releases/download/${YQ_VERSION}/yq_linux_amd64 -o /usr/bin/yq
chmod +x /usr/bin/yq
- name: Git safe directory
run: |
git config --global --add safe.directory "$PWD"
Expand Down

0 comments on commit 43347d8

Please sign in to comment.