Update go-github to v64 #360
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: lint | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches-ignore: | |
# Do not push events to branches matching refs/heads/main | |
- 'main' | |
tags-ignore: [ '*' ] | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Run Revive Action | |
uses: docker://morphy/revive-action:v2 | |
with: | |
# Path to your Revive config within the repo (optional) | |
config: revive/config.toml | |