Skip to content

Bump github.com/jackc/pgx/v5 to v5.9.2 (CVE-2026-41889) #663

Bump github.com/jackc/pgx/v5 to v5.9.2 (CVE-2026-41889)

Bump github.com/jackc/pgx/v5 to v5.9.2 (CVE-2026-41889) #663

Workflow file for this run

name: "10 - Test: Linting"
on:
push:
tags:
- v*
branches:
- main
- "v*"
workflow_dispatch:
pull_request:
permissions:
contents: read
jobs:
golangci:
name: Test Linting
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
path: steampipe
- name: Checkout Pipe Fittings Components repository
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
repository: turbot/pipe-fittings
path: pipe-fittings
ref: v1.6.x
# this is required, check golangci-lint-action docs
- uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
with:
go-version: '1.26.1'
cache: false # setup-go v4 caches by default, do not change this parameter, check golangci-lint-action doc: https://github.com/golangci/golangci-lint-action/pull/704
- name: golangci-lint
uses: golangci/golangci-lint-action@1e7e51e771db61008b38414a730f564565cf7c20 # v9.2.0
continue-on-error: true # we dont want to enforce just yet
with:
version: latest
args: --timeout=10m
working-directory: steampipe
skip-cache: true