chore(deps): update dependency mermaid to v11.16.0 #104
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
| # Workflow to checkout repository | |
| name: Test action action-actionlint | |
| on: | |
| push: | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read # for checkout | |
| # minimal test that action-actionlint is running as the implementation should change (see https://github.com/it-at-m/lhm_actions/issues/275) | |
| jobs: | |
| test-actionlint-with-default-settings: | |
| name: test-actionlint-with-default-settings | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout-local-actions | |
| uses: it-at-m/lhm_actions/action-templates/actions/action-checkout@6db6885319cb1f85f75cd2947caa96596047711b | |
| with: | |
| fetch-depth: 0 | |
| persist-credentials: false | |
| - name: test-actionlint-with-default-settings | |
| uses: ./action-templates/actions/action-actionlint | |
| test-actionlint-with-display-findings-false: | |
| name: test-actionlint-with-display-findings-false | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout-local-actions | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| fetch-depth: 0 | |
| persist-credentials: false | |
| - name: test-actionlint-with-display-findings-false | |
| uses: ./action-templates/actions/action-actionlint | |
| with: | |
| display-findings: false |