Skip to content

Bump github/codeql-action from 3.28.10 to 3.28.11 #866

Bump github/codeql-action from 3.28.10 to 3.28.11

Bump github/codeql-action from 3.28.10 to 3.28.11 #866

Workflow file for this run

name: Verify Pull Request
on: [pull_request]
permissions:
checks: write
id-token: write # This is required for requesting the JWT
contents: read # This is required for actions/checkout
jobs:
verifypr:
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@4d991eb9b905ef189e4c376166672c3f2f230481 # v2.11.0
with:
disable-sudo: true
egress-policy: block
allowed-endpoints: >
files.pythonhosted.org:443
github.com:443
pypi.org:443
www.bridgecrew.cloud:443
docs.github.com:433
api.github.com:443
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Run StandardLint
uses: mikaelvesavuori/standardlint-action@b376b6d6afc5885d102894f6972133fa91d200f0 # v1.0.5
env:
GITHUB_TOKEN: ${{ github.token }}
- name: Testing template with CFN Lint
uses: scottbrenner/cfn-lint-action@2d3d07f3527aab48a973d3ee6e66009e87ea3491 # v2.4.8
with:
command: cfn-lint -t cloudformation/template.yml
- name: Testing route53 with CFN Lint
uses: scottbrenner/cfn-lint-action@2d3d07f3527aab48a973d3ee6e66009e87ea3491 # v2.4.8
with:
command: cfn-lint -t cloudformation/route53.yml
- name: Testing disaster-recovery with CFN Lint
uses: scottbrenner/cfn-lint-action@2d3d07f3527aab48a973d3ee6e66009e87ea3491 # v2.4.8
with:
command: cfn-lint -t cloudformation/disaster-recovery.yml
- name: Testing app with CFN Lint
uses: scottbrenner/cfn-lint-action@2d3d07f3527aab48a973d3ee6e66009e87ea3491 # v2.4.8
with:
command: cfn-lint -t cloudformation/app.yml
- name: Run cfn-nag
uses: stelligent/cfn_nag@8b5f03da74202ba323a145e9d037ddce6cab9dec # master
with:
input_path: cloudformation
- name: Run Checkov action
id: checkov
uses: bridgecrewio/checkov-action@e13ed1fd0f03094b3dcb4389c2f46ef4df9292b1 # master
with:
file: cloudformation/template.yml
skip_check: CKV_AWS_59,CKV_AWS_120,CKV2_AWS_71
framework: cloudformation
output_format: sarif
output_file_path: reports/results.sarif
download_external_modules: true