Skip to content

🌱 Bump google.golang.org/grpc from 1.82.1 to 1.83.1 #439

🌱 Bump google.golang.org/grpc from 1.82.1 to 1.83.1

🌱 Bump google.golang.org/grpc from 1.82.1 to 1.83.1 #439

Workflow file for this run

name: "CodeQL"
on:
push:
branches: [main]
pull_request:
types: [opened, edited, synchronize, reopened]
schedule:
- cron: "0 6 * * 1" # Every Monday at 06:00 UTC
permissions:
contents: read
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
security-events: write
strategy:
fail-fast: false
matrix:
language: ["go"]
steps:
- name: Checkout repository
uses: actions/checkout@0c366fd6a839edf440554fa01a7085ccba70ac98 # tag=v4.2.2
with:
fetch-depth: 0
- name: Calculate go version
id: vars
run: echo "go_version=$(make go-version)" >> $GITHUB_OUTPUT
- name: Set up Go
uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # tag=v7.0.0
with:
go-version: ${{ steps.vars.outputs.go_version }}
- name: Initialize CodeQL
uses: github/codeql-action/init@99df26d4f13ea111d4ec1a7dddef6063f76b97e9 # tag=v4.37.0
with:
languages: ${{ matrix.language }}
- name: Build
run: make operator plugin
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@99df26d4f13ea111d4ec1a7dddef6063f76b97e9 # tag=v4.37.0
with:
category: "/language:${{ matrix.language }}"