Build(deps): Bump github.com/aws/aws-sdk-go-v2/credentials from 1.17.26 to 1.17.32 #291
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: "CodeQL" | |
on: | |
push: | |
branches: [ '*' ] | |
paths: [ '**.go' ] | |
pull_request: | |
branches: [ '*' ] | |
schedule: | |
# run every Saturday at 00:00 UTC | |
- cron: '0 0 * * 6' | |
jobs: | |
Analyze: | |
name: Analyze | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
strategy: | |
fail-fast: false | |
matrix: | |
# Learn more about CodeQL language support at https://git.io/codeql-language-support | |
language: [ 'go' ] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v3 | |
with: | |
languages: ${{ matrix.language }} | |
config-file: ./.github/codeql/codeql-config.yaml | |
# Autobuild attempts to build any compiled languages (C/C++, C#, Java, etc). | |
# If this step fails, then you should remove it and run the build manually (see below) | |
# ℹ️ Command-line programs to run using the OS shell. | |
# 📚 https://git.io/JvXDl | |
- name: Autobuild | |
uses: github/codeql-action/autobuild@v3 | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v3 |