chore(deps): update module github.com/evanphx/json-patch to v5.9.0+in… #266
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: golangci-lint | |
env: | |
SETUP_GO_VERSION: '^1.20' | |
on: | |
push: | |
pull_request: | |
tags: | |
- v* | |
branches: | |
- 'release/*' | |
- 'master' | |
jobs: | |
golangci: | |
name: golangci-lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Setup Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ env.SETUP_GO_VERSION }} | |
- name: Generate Golang | |
run: | | |
export PATH=$PATH:/home/runner/go/bin/ | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v3.7.0 | |
with: | |
# Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version. | |
version: v1.55 |