Skip to content

Bump github.com/zalando/go-keyring from 0.2.6 to 0.2.8 #230

Bump github.com/zalando/go-keyring from 0.2.6 to 0.2.8

Bump github.com/zalando/go-keyring from 0.2.6 to 0.2.8 #230

Workflow file for this run

name: "CodeQL Code Scanning"
on:
push:
branches: [ main ]
paths:
- '**.go'
- 'go.mod'
- 'go.sum'
- '.github/workflows/codeql-analysis.yml'
pull_request:
branches: [ main ]
paths:
- '**.go'
- 'go.mod'
- 'go.sum'
- '.github/workflows/codeql-analysis.yml'
schedule:
- cron: '0 14 * * 1' # Run once a week on Monday at 14:00 UTC
jobs:
analyze:
name: Analyze with CodeQL
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ 'go' ]
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Initialize CodeQL
uses: github/codeql-action/init@v4
with:
languages: ${{ matrix.language }}
- name: Setup Go
uses: actions/setup-go@v6
with:
go-version-file: 'go.mod'
cache: true
- name: Autobuild
uses: github/codeql-action/autobuild@v4
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v4
with:
category: "/language:${{matrix.language}}"