We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4f730e8 + 401bb89 commit 5624293Copy full SHA for 5624293
.github/actions/prepare-workflow/action.yml
@@ -13,9 +13,11 @@ runs:
13
- name: Setup environment
14
shell: bash
15
run: |
16
- sudo apt-get update
17
- sudo apt-get install -y software-properties-common jq
18
- apt-add-repository -y 'deb https://archive.debian.org/debian bullseye-backports main'
+ if ! command -v jq &> /dev/null; then
+ sudo apt-get update
+ sudo apt-get install -y software-properties-common jq
19
+ apt-add-repository -y 'deb https://archive.debian.org/debian bullseye-backports main'
20
+ fi
21
sudo chown -R testbot .
22
sudo mkdir -p /home/testbot/.cache/buf
23
sudo chown -R testbot:testbot /home/testbot/.cache
0 commit comments