Skip to content

fix(deps): update module google.golang.org/api to v0.155.0 #3075

fix(deps): update module google.golang.org/api to v0.155.0

fix(deps): update module google.golang.org/api to v0.155.0 #3075

Workflow file for this run

# name of the action
name: validate
# trigger on pull_request or push events
on:
pull_request:
push:
permissions:
contents: read
# pipeline to execute
jobs:
validate:
runs-on: ubuntu-latest
steps:
- name: clone
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
- name: install go
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5
with:
# use version from go.mod file
go-version-file: 'go.mod'
cache: true
check-latest: true
- name: validate
run: |
make validate
git diff --exit-code