Skip to content

Bump google.golang.org/api from 0.195.0 to 0.196.0 #1246

Bump google.golang.org/api from 0.195.0 to 0.196.0

Bump google.golang.org/api from 0.195.0 to 0.196.0 #1246

Workflow file for this run

name: Go
on:
pull_request:
branches: [ master ]
paths:
- 'cmd/**'
- 'internal/**'
- 'vendor/**'
- go.mod
- go.sum
- 'web/**'
- 'proto/**'
- 'pkg/**'
- 'Dockerfile.pibuilder'
- 'Dockerfile.lint'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up QEMU
id: qemu
uses: docker/setup-qemu-action@v3
with:
image: tonistiigi/binfmt:latest
platforms: all
- name: Lint
run: ./script/lint
- name: Test
run: ./script/test
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'npm'
cache-dependency-path: "web/package-lock.json"
- run: npm ci
working-directory: "./web"
- run: npm run build
working-directory: "./web"
- name: Build
run: ./script/build