Skip to content

Commit e8d2c58

Browse files
yq v4.46.1
1 parent 6eeeb84 commit e8d2c58

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

.github/workflows/tests.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,10 @@ jobs:
2525

2626
- name: Install yq (for stack resolvers)
2727
run: |
28-
sudo add-apt-repository -y ppa:rmescandon/yq
29-
sudo apt-get -q update
30-
sudo apt-get -y install yq
28+
sudo apt-get update
29+
sudo apt-get -y install wget
30+
wget https://github.com/mikefarah/yq/releases/download/v4.46.1/yq_linux_amd64 -O /usr/local/bin/yq
31+
chmod +x /usr/local/bin/yq
3132
3233
- name: Ensure stack resolvers are synced
3334
run: bin/ensure-stack-resolvers-are-synced.sh
@@ -69,9 +70,10 @@ jobs:
6970

7071
- name: Install yq (for stack resolvers)
7172
run: |
72-
sudo add-apt-repository -y ppa:rmescandon/yq
73-
sudo apt-get -q update
74-
sudo apt-get -y install yq
73+
sudo apt-get update
74+
sudo apt-get -y install wget
75+
wget https://github.com/mikefarah/yq/releases/download/v4.46.1/yq_linux_amd64 -O /usr/local/bin/yq
76+
chmod +x /usr/local/bin/yq
7577
7678
- name: Resolve resolver
7779
id: resolve-resolver

0 commit comments

Comments
 (0)