Skip to content

Bump google.golang.org/api from 0.177.0 to 0.178.0 #677

Bump google.golang.org/api from 0.177.0 to 0.178.0

Bump google.golang.org/api from 0.177.0 to 0.178.0 #677

Workflow file for this run

name: Go
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Get the system requirements.
run: sudo apt-get install coreutils -y
- name: Get the current version of Go from project.
run: cat go.mod | head -3 | tail -1 | echo "GO_VERSION_FROM_PROJECT=$(cut -d' ' -f2)" >>${GITHUB_ENV}
- name: Set up Go version "${{ env.GO_VERSION_FROM_PROJECT }}"
uses: actions/setup-go@v5
with:
go-version: "${{ env.GO_VERSION_FROM_PROJECT }}"
id: go
- name: Get dependencies
run: go get .
- name: Build Test
run: go build .