chore(deps): pin alpine docker tag to 82d1e9d - autoclosed #128
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 of the action | |
name: reviewdog | |
# trigger on pull_request events | |
on: | |
pull_request: | |
# pipeline to execute | |
jobs: | |
diff-review: | |
runs-on: ubuntu-latest | |
container: | |
image: golang:1.18@sha256:50c889275d26f816b5314fc99f55425fa76b18fcaf16af255f5d57f09e1f48da | |
steps: | |
- name: clone | |
uses: actions/checkout@v3 | |
- name: golangci-lint | |
uses: reviewdog/action-golangci-lint@v2 | |
with: | |
github_token: ${{ secrets.github_token }} | |
golangci_lint_flags: "--config=.golangci.yml" | |
fail_on_error: true | |
filter_mode: diff_context | |
reporter: github-pr-review | |
full-review: | |
runs-on: ubuntu-latest | |
container: | |
image: golang:1.18@sha256:50c889275d26f816b5314fc99f55425fa76b18fcaf16af255f5d57f09e1f48da | |
steps: | |
- name: clone | |
uses: actions/checkout@v3 | |
- name: golangci-lint | |
uses: reviewdog/action-golangci-lint@v2 | |
with: | |
github_token: ${{ secrets.github_token }} | |
golangci_lint_flags: "--config=.golangci.yml" | |
fail_on_error: false | |
filter_mode: nofilter |