exec() bouncer in docker_start.sh instead of calling the binary #112
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: Static Analysis | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
name: "golangci-lint + codeql" | |
runs-on: ubuntu-latest | |
permissions: | |
security-events: write | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.21.8 | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v3 | |
with: | |
languages: go, python | |
- name: Build | |
run: | | |
make build | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
version: v1.54 | |
args: --issues-exit-code=1 --timeout 10m | |
only-new-issues: false | |
# the cache is already managed above, enabling it here | |
# gives errors when extracting | |
skip-pkg-cache: true | |
skip-build-cache: true | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v3 |