Skip to content

Bump google.golang.org/protobuf from 1.36.4 to 1.36.5 #371

Bump google.golang.org/protobuf from 1.36.4 to 1.36.5

Bump google.golang.org/protobuf from 1.36.4 to 1.36.5 #371

Workflow file for this run

name: lint
on: [push]
permissions:
contents: read
pull-requests: read
checks: write
jobs:
lint:
name: lint
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: setup go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
cache-dependency-path: 'web/package-lock.json'
- name: Build web UI
run: ./scripts/build-web.sh
- name: Move web artifacts
run: mkdir -p pkg/cloud/api/web/ && cp -r web/dist pkg/cloud/api/web/
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.60.3
- name: go mod tidy check
uses: katexochen/go-tidy-check@v2