Addition of missing word. #1115
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: "Code Scanning" | |
on: | |
push: | |
branches: | |
- test/* | |
pull_request: | |
branches: | |
- master | |
jobs: | |
CodeQL-Build: | |
name: CodeQL Security Scan | |
runs-on: ubuntu-latest | |
timeout-minutes: 90 | |
steps: | |
# Setup go environment | |
- name: Go 1.22 | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "^1.22" | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
# Must fetch at least the immediate parents so that if this is | |
# a pull request then we can checkout the head of the pull request. | |
# Only include this option if you are running this workflow on pull requests. | |
if: ${{ github.event_name == 'pull_request' }} | |
fetch-depth: 2 | |
- name: OS Packages | |
run: | | |
sudo apt-get update --fix-missing && sudo apt-get -y install \ | |
git build-essential zlib1g zlib1g-dev wget zip unzip | |
- name: Check Out Code | |
uses: actions/checkout@v4 | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v3 | |
with: | |
config-file: ./.github/codeql/codeql-config.yml | |
languages: go | |
- name: Make | |
run: make | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v3 | |
env: | |
VERSION: ${{github.sha}} |