I install ansible-lint by
python3 -m pip install -r requirements.txt --target tmp/
The installed version is 24.9.0
Locally, everything is fine.
But when I run it on Github Actions, it complain about
FileNotFoundError: [Errno 2] No such file or directory: 'tmp/ansiblelint/data/.yamllint'
If I make an ls -la
inside that folder, the file is not there (which is coherent with the message)
Any idea?
1