Skip to content

chore(deps): update bot deps (#1659) #6591

chore(deps): update bot deps (#1659)

chore(deps): update bot deps (#1659) #6591

name: "CodeQL"
on:
push:
branches: [ "main" ]
paths-ignore:
- '**/*.md'
- 'docs/**'
- 'LICENSE'
- '.gitignore'
pull_request:
branches: [ "main" ]
paths-ignore:
- '**/*.md'
- 'docs/**'
- 'LICENSE'
- '.gitignore'
schedule:
- cron: '39 22 * * 5'
jobs:
analyze:
name: Analyze
runs-on: 'ubuntu-latest'
timeout-minutes: 60
permissions:
security-events: write
packages: read
actions: read
contents: read
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version-file: "go.mod"
cache-dependency-path: "**/*.sum"
- name: Initialize CodeQL
uses: github/codeql-action/init@v4
with:
languages: go
build-mode: manual
- run: make -j2 install-fabric-bins pull-images-database
- name: Build manually
shell: bash
run: |
make install-fsccli
go build -o node ./ci/codeql/node
make unit-tests unit-tests-postgres
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v4
with:
category: "/language:go"