fix(deps): update github.com/labstack/echo/v5 digest to 5a0b4dd #1971
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: fast lint checks | |
on: | |
pull_request: | |
types: [opened, reopened, labeled, unlabeled, synchronize] | |
permissions: | |
contents: read | |
pull-requests: write | |
jobs: | |
shellcheck: | |
name: runner / shellcheck | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4 | |
- name: shellcheck | |
uses: reviewdog/action-shellcheck@v1 | |
with: | |
github_token: ${{ secrets.GORELEASER_GITHUB_TOKEN }} | |
reporter: github-pr-review # Change reporter. | |
path: "." # Optional. | |
pattern: "*.sh" # Optional. | |
exclude: | | |
*/.git/* | |
./vendor/* | |
golangci-lint: | |
name: runner / golangci-lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4 | |
- name: golangci-lint | |
uses: reviewdog/action-golangci-lint@v2 | |
with: | |
reporter: github-pr-review | |
github_token: ${{ secrets.GORELEASER_GITHUB_TOKEN }} | |
golangci_lint_flags: "--config=.golangci.yml" | |
verify-labels: | |
name: verify labels | |
runs-on: ubuntu-latest | |
steps: | |
- uses: jesusvasquez333/verify-pr-label-action@v1.4.0 | |
with: | |
github-token: '${{ secrets.GITHUB_TOKEN }}' | |
disable-reviews: true | |
valid-labels: 'bug, feature, security, maintenance, documentation, dependencies' |