Skip to content

chore(deps): bump golang.org/x/text from 0.14.0 to 0.15.0 #86

chore(deps): bump golang.org/x/text from 0.14.0 to 0.15.0

chore(deps): bump golang.org/x/text from 0.14.0 to 0.15.0 #86

Workflow file for this run

name: "CodeQL"
on:
workflow_dispatch:
push:
branches: ["main"]
paths-ignore:
- "**/*.md"
- "**/*.txt"
- "example"
- "docker"
- "docs"
- "testdata"
pull_request:
branches: ["main"]
paths-ignore:
- "**/*.md"
- "**/*.txt"
- "example"
- "docker"
- "docs"
- "testdata"
schedule:
- cron: "0 0 * * *"
env:
GO_VERSION: "1.22"
permissions:
actions: read
contents: read
security-events: write
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
language: ["go"]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
config: |
disable-default-queries: true
queries:
- uses: security-extended
query-filters:
- exclude:
id:
- go/clear-text-logging
- name: Autobuild
uses: github/codeql-action/autobuild@v3
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"