Skip to content

build(deps): bump golang.org/x/oauth2 from 0.19.0 to 0.20.0 #102

build(deps): bump golang.org/x/oauth2 from 0.19.0 to 0.20.0

build(deps): bump golang.org/x/oauth2 from 0.19.0 to 0.20.0 #102

Workflow file for this run

name: Go
on:
push:
branches: [ master ]
tags:
- v*
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.21
- name: Vet
run: go vet ./...
- name: Test
run: go test -v ./...
- name: Build
run: go build -v .
- name: Run goreleaser in release mode
if: success() && startsWith(github.ref, 'refs/tags/v')
uses: goreleaser/goreleaser-action@v5
with:
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}