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