Skip to content

Commit

Permalink
fix(workflows): install jq
Browse files Browse the repository at this point in the history
  • Loading branch information
invakid404 committed Aug 30, 2024
1 parent dead03a commit dead24a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/build-actions-runner-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Install jq (schedule)
if: github.event_name != 'push'
run: |
apt update && apt install -y jq
- name: Find all changed Dockerfiles (push)
id: find-changed
if: github.event_name == 'push'
Expand Down

0 comments on commit dead24a

Please sign in to comment.