build(deps): bump github.com/jackc/pgx/v5 from 5.7.1 to 5.7.2 #387
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@v7 | |
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 | |
# do not validate SQL - linters are pretty useless in case of this library, | |
# and the functionality is tested using integration tests | |
VALIDATE_SQL: false | |
VALIDATE_SQLFLUFF: false | |
VALIDATE_CHECKOV: false | |
# it forces all list items to be on a single line in .github/linters/.jscpd.json that is not pretty at all | |
VALIDATE_JSON_PRETTIER: false | |
- name: Setup dependencies | |
uses: ./.github/actions/setup-deps | |
with: | |
go-version: "1.21" | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Lint Golang | |
uses: golangci/golangci-lint-action@v6 | |
with: | |
only-new-issues: ${{ github.event_name == 'pull_request' }} | |
args: > | |
--config=./.github/linters/.golangci.yml | |
codespell: | |
name: Check spelling | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: codespell-project/actions-codespell@v2 |