Skip to content

jmespath dependency #4321

Answered by AirOnSkin
AirOnSkin asked this question in General
Sep 10, 2024 · 1 comments · 5 replies
Discussion options

You must be logged in to vote

Sorry for the late reply, I was on holidays.

In the end I got it to work with setting up all the packages myself and ignoring the provided ansible-lint GH action:

---
name: Ansible Lint
on:
  # not using 'push' because of the if-condition below
  pull_request:
    types: [opened, edited, synchronize, reopened, ready_for_review]

jobs:
  ansible-lint:
    runs-on: ubuntu-latest
    if: ${{ !github.event.pull_request.draft }}

    steps:
      - uses: actions/checkout@v4

      - name: Install system dependencies
        run: |
          sudo apt-get update
          sudo apt-get install -y --no-install-recommends python3-pip
          pip install ansible ansible-lint boto3 jmespath

      - 

Replies: 1 comment 5 replies

Comment options

You must be logged in to vote
5 replies
@konstruktoid
Comment options

@AirOnSkin
Comment options

@konstruktoid
Comment options

@AirOnSkin
Comment options

Answer selected by AirOnSkin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants