Skip to content

Use the VM’s IP address on the same subnet as the host OS. #3822

Use the VM’s IP address on the same subnet as the host OS.

Use the VM’s IP address on the same subnet as the host OS. #3822

Workflow file for this run

name: "CodeQL Advanced"
on:
# paths-ignore should be kept in sync with test.yml
push:
branches: ["master"]
paths-ignore:
- "docs/**"
- "website/**"
- "**.md"
pull_request:
branches: ["master"]
paths-ignore:
- "docs/**"
- "website/**"
- "**.md"
schedule:
- cron: '33 19 * * 5'
workflow_dispatch:
permissions:
contents: read
jobs:
analyze:
name: Analyze (${{ matrix.language }})
runs-on: 'ubuntu-latest'
permissions:
security-events: write
# required to fetch internal or private CodeQL packs
packages: read
strategy:
fail-fast: false
matrix:
include:
- language: go
build-mode: autobuild
steps:
- name: Checkout repository
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Initialize CodeQL
uses: github/codeql-action/init@f443b600d91635bebf5b0d9ebc620189c0d6fba5 # v4.30.8
with:
languages: ${{ matrix.language }}
build-mode: ${{ matrix.build-mode }}
- if: matrix.build-mode == 'manual'
shell: bash
run: |
echo 'If you are using a "manual" build mode for one or more of the' \
'languages you are analyzing, replace this with the commands to build' \
'your code, for example:'
echo ' make bootstrap'
echo ' make release'
exit 1
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@f443b600d91635bebf5b0d9ebc620189c0d6fba5 # v4.30.8
with:
category: "/language:${{matrix.language}}"