We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c109c05 commit 4cf2795Copy full SHA for 4cf2795
1 file changed
.github/workflows/build-kernel.yml
@@ -22,11 +22,16 @@ jobs:
22
source config.env
23
set +o allexport
24
25
- - name: Install yq via apt
+ - name: Install yq (v4)
26
run: |
27
- sudo apt-get update && sudo apt-get install -y yq
28
- yq --version
29
-
+ set -e
+ curl -sL https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64.tar.gz | tar xz
+ chmod +x yq_linux_amd64
30
+ sudo mv yq_linux_amd64 /usr/local/bin/yq
31
+ yq --version
32
+
33
34
35
- name: Set up swap
36
uses: pierotofy/set-swap-space@master
37
with:
0 commit comments