Update module github.com/google/go-github/v49 to v65 (#85) #167
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
branches: | |
- '*' | |
paths-ignore: | |
- 'docs/**' | |
- '**/README.md' | |
tags-ignore: | |
- '*.*' | |
pull_request: | |
types: [opened, reopened] | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.22.1 | |
id: go | |
- uses: actions/checkout@v4 | |
- name: Build | |
env: | |
GIT_COMMIT: "${{ github.sha }}" | |
run: | | |
make vendors | |
make build |