chore(deps): update all non-major dependencies #2805
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# For some reason megalinter ignores the yamllint config | |
# and attempts to lint charts/recruit/templates causing | |
# it to fail constantly. So we run yamllint as a dedicated step | |
# instead. | |
name: yamllint | |
on: | |
pull_request: | |
branches: | |
- master | |
push: | |
branches: | |
- master | |
permissions: read-all | |
jobs: | |
yamllint: | |
runs-on: ubuntu-24.04 | |
# contains yamllint | |
container: ghcr.io/chgl/kube-powertools:v2.3.27@sha256:2d1a6a5c0c42a29219550a616c5eeaa5ef9d057f28c40c9d83d048f73d57794b | |
steps: | |
- name: Checkout | |
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1 | |
- name: Run yamllint | |
run: yamllint -c .yamllint.yaml . |