dep: update module github.com/google/go-github/v64 to v66 #632
Workflow file for this run
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: reviewdog | |
on: [pull_request] | |
permissions: | |
contents: read | |
jobs: | |
golangci-lint: | |
permissions: | |
checks: write # for reviewdog/action-golangci-lint to report issues using checks | |
contents: read # for actions/checkout to fetch code | |
name: golangci-lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1 | |
- name: golangci-lint | |
uses: reviewdog/action-golangci-lint@7708105983c614f7a2725e2172908b7709d1c3e4 # v2.6.2 | |
with: | |
go_version_file: "go.mod" | |
level: warning |