CTOR-1844 New Pack(apps::java::cxf::jmx) #1674
Workflow file for this run
This file contains hidden or 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
| name: actionlint | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| on: | |
| pull_request: | |
| branches: | |
| - develop | |
| - master | |
| - hotfix-* | |
| - release-* | |
| paths: | |
| - ".github/**" | |
| jobs: | |
| action-lint: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout sources | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| - name: Download actionlint | |
| id: get_actionlint | |
| run: bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/v1.7.7/scripts/download-actionlint.bash) | |
| shell: bash | |
| - name: Check workflow files | |
| run: | | |
| ${{ steps.get_actionlint.outputs.executable }} \ | |
| -ignore 'label "centreon-(common|collect-arm64)" is unknown' \ | |
| -ignore 'label "ubuntu-(24.04|24.04-arm)" is unknown' \ | |
| -ignore '"github.head_ref" is potentially untrusted' \ | |
| -shellcheck= \ | |
| -pyflakes= \ | |
| -color | |
| shell: bash | |
| - name: Ensure SHA pinned actions | |
| uses: centreon/github-actions-ensure-sha-pinned-actions@47d553c67ceb08ad660deaeb3b994e47a3dd8fc3 # v3.0.23.3 | |
| with: | |
| allowlist: | | |
| centreon/security-tools | |
| yaml-lint: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout sources | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| - name: Install Yaml | |
| run: | | |
| pip install yamllint==1.32.0 | |
| - name: Add Yaml Lint Rules | |
| run: | | |
| cat <<EOF >>./yamllint_rules.yml | |
| extends: default | |
| rules: | |
| document-start: disable | |
| line-length: disable | |
| truthy: | |
| check-keys: false | |
| level: error | |
| indentation: | |
| spaces: 2 | |
| indent-sequences: true | |
| check-multi-line-strings: false | |
| comments: | |
| ignore-shebangs: true | |
| min-spaces-from-content: 1 | |
| comments-indentation: disable | |
| new-lines: | |
| type: unix | |
| new-line-at-end-of-file: enable | |
| EOF | |
| - name: Lint YAML files | |
| run: | | |
| yamllint -c ./yamllint_rules.yml ./.github/actions/ ./.github/workflows/ |