Skip to content

chore(deps): Bump google.golang.org/grpc from 1.58.1 to 1.58.3 #46

chore(deps): Bump google.golang.org/grpc from 1.58.1 to 1.58.3

chore(deps): Bump google.golang.org/grpc from 1.58.1 to 1.58.3 #46

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
env:
GOLANG_VERSION: '1.21'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ env.GOLANG_VERSION }}
- name: Build
run: make build
- name: Test
run: make test
- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}