Skip to content

Commit d4c100f

Browse files
committed
fix: install ripgrep in github workflows
1 parent 100b955 commit d4c100f

2 files changed

Lines changed: 14 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,13 @@ jobs:
2929
go-version-file: go.mod
3030
cache: true
3131

32+
- name: Install verification dependencies
33+
shell: bash
34+
run: |
35+
set -euo pipefail
36+
sudo apt-get update
37+
sudo apt-get install -y ripgrep
38+
3239
- name: Check formatting
3340
shell: bash
3441
run: |

.github/workflows/release.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,13 @@ jobs:
4949
tar -C /tmp -xzf /tmp/helm.tgz
5050
sudo install -m 0755 /tmp/linux-amd64/helm /usr/local/bin/helm
5151
52+
- name: Install verification dependencies
53+
shell: bash
54+
run: |
55+
set -euo pipefail
56+
sudo apt-get update
57+
sudo apt-get install -y ripgrep
58+
5259
- name: Check formatting
5360
shell: bash
5461
run: |

0 commit comments

Comments
 (0)