Bump golang.org/x/net from 0.28.0 to 0.30.0 #4819
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: "Advanced CodeQL Analysis" | |
on: [push, pull_request] | |
jobs: | |
code_analysis: | |
name: Code Analysis | |
runs-on: ubuntu-latest | |
steps: | |
- name: Retrieve Repository | |
uses: actions/checkout@v4 | |
- name: Cache CodeQL Databases | |
uses: actions/cache@v4 | |
with: | |
path: ~/.codeql | |
key: ${{ runner.os }}-codeql-${{ hashFiles('**/*.go') }} | |
restore-keys: | | |
${{ runner.os }}-codeql- | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v3 | |
with: | |
languages: go | |
- name: Autobuild Go Project | |
uses: github/codeql-action/autobuild@v3 | |
- name: Execute CodeQL Analysis | |
uses: github/codeql-action/analyze@v3 |