Bump github.com/jackc/pgx/v5 from 5.5.3 to 5.5.4 #6
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" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref }} | |
cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
with: | |
# Full git history is needed to get a proper list of changed files within `super-linter` | |
fetch-depth: 0 | |
- name: Lint Code Base | |
uses: github/super-linter@v5 | |
env: | |
VALIDATE_ALL_CODEBASE: ${{ github.event_name != 'pull_request' }} | |
DEFAULT_BRANCH: master | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# go validator works pretty bad in super-linter, we'll use the original one | |
VALIDATE_GO: false | |
- name: Setup dependencies | |
uses: ./.github/actions/setup-deps | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Lint Golang | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
only-new-issues: ${{ github.event_name == 'pull_request' }} | |
args: > | |
--config=./.github/linters/.golangci.yml |