Skip to content

docs: add a proposal for periodic retrieval (#1510) #30

docs: add a proposal for periodic retrieval (#1510)

docs: add a proposal for periodic retrieval (#1510) #30

Workflow file for this run

name: "CodeQL Scan"
on:
push:
branches:
- main
- dev
- 1.0.0*
pull_request:
branches:
- main
- dev
- 1.0.0*
schedule:
- cron: '30 1 * * 0'
workflow_dispatch:
permissions: read-all
jobs:
CodeQL-Build:
runs-on: ubuntu-latest
permissions:
security-events: write
steps:
- name: Checkout repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # tag=3.0.2
- name: setup go environment
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
with:
go-version: "1.21"
- name: Initialize CodeQL
uses: github/codeql-action/init@23acc5c183826b7a8a97bce3cecc52db901f8251 # tag=v3.25.10
with:
languages: go
- name: Run tidy
run: go mod tidy
- name: Build CLI
run: make build
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@23acc5c183826b7a8a97bce3cecc52db901f8251 # tag=v3.25.10