fix(aws): Moved AWS Role & region to the secrets #71
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 | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| checks: write | |
| pull-requests: write | |
| jobs: | |
| lint: | |
| name: Lint workflows and local actions | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| - name: Run actionlint with reviewdog | |
| if: ${{ github.event_name == 'pull_request' }} | |
| uses: reviewdog/action-actionlint@0d952c597ef8459f634d7145b0b044a9699e5e43 # v1 | |
| with: | |
| reporter: github-pr-check | |
| fail_level: any | |
| filter_mode: nofilter | |
| actionlint_flags: "-config-file .github/actionlint.yaml" | |
| - name: Run actionlint on workflows | |
| if: ${{ github.event_name == 'push' }} | |
| uses: devops-actions/actionlint@469810fd82c015d3c43815cd2b0e4d02eecc4819 # v0.1.11 | |
| - name: Validate local actions | |
| if: ${{ always() }} | |
| uses: bettermarks/composite-action-lint@673212ed410dde8377d1d5bce860152e85064a2d # master | |
| with: | |
| actions: .github/actions/*/action.y*ml |