chore(deps): bump aws-actions/aws-codebuild-run-build from b0a7ca5730725c01b45af8866100667e32e0a9b1 to b31229dccde89c01530699df08ad07e8d7ac21a8 in /.github/actions/e2e/run-tests-private-cluster in the action-deps group #3743
Workflow file for this run
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
name: "CodeQL" | |
on: | |
push: | |
branches: | |
- 'main' | |
- 'release-v*' | |
pull_request: | |
schedule: | |
- cron: '0 12 * * *' | |
jobs: | |
analyze-go: | |
name: Analyze Go | |
if: github.repository == 'aws/karpenter-provider-aws' | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read # github/codeql-action/init@v2 | |
security-events: write # github/codeql-action/init@v2 | |
steps: | |
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 | |
- uses: ./.github/actions/install-deps | |
- run: make vulncheck | |
- uses: github/codeql-action/init@df32e399139a3050671466d7d9b3cbacc1cfd034 # v2.22.8 | |
with: | |
languages: go | |
- uses: github/codeql-action/autobuild@df32e399139a3050671466d7d9b3cbacc1cfd034 # v2.22.8 | |
- uses: github/codeql-action/analyze@df32e399139a3050671466d7d9b3cbacc1cfd034 # v2.22.8 | |
# Javascript is added here for evaluating Github Action vulnerabilities | |
# https://github.blog/2023-08-09-four-tips-to-keep-your-github-actions-workflows-secure/#2-enable-code-scanning-for-workflows | |
analyze-github-actions: | |
name: Analyze Github Actions | |
if: github.repository == 'aws/karpenter-provider-aws' | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read # github/codeql-action/init@v2 | |
security-events: write # github/codeql-action/init@v2 | |
steps: | |
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 | |
- uses: github/codeql-action/init@df32e399139a3050671466d7d9b3cbacc1cfd034 # v2.22.8 | |
with: | |
languages: javascript | |
config: | | |
packs: | |
# Use the latest version of 'codeql-javascript' published by 'advanced-security' | |
# This will catch things like actions that aren't pinned to a hash | |
- advanced-security/codeql-javascript | |
paths: | |
- '.github/workflows' | |
- '.github/actions' | |
- uses: github/codeql-action/analyze@df32e399139a3050671466d7d9b3cbacc1cfd034 # v2.22.8 |