Change to replace manual step(used by redhat, where ipu_port1_setup.sh script is used). #638
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: | |
workflow_dispatch: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
schedule: | |
- cron: "37 4 * * 0" | |
permissions: | |
contents: read | |
jobs: | |
analyze: | |
name: Analyze | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
strategy: | |
fail-fast: false | |
matrix: | |
language: [ go ] | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@63c24ba6bd7ba022e95695ff85de572c04a18142 # v2.7.0 | |
with: | |
egress-policy: audit | |
- name: Set up Go | |
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0 | |
with: | |
go-version: 1.21 | |
- name: Checkout | |
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v3.5.2 | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@df5a14dc28094dc936e103b37d749c6628682b60 # v2.3.3 | |
with: | |
languages: ${{ matrix.language }} | |
queries: +security-and-quality | |
- name: Autobuild | |
uses: github/codeql-action/autobuild@df5a14dc28094dc936e103b37d749c6628682b60 # v2.3.3 | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@df5a14dc28094dc936e103b37d749c6628682b60 # v2.3.3 | |
with: | |
category: "/language:${{ matrix.language }}" | |