Skip to content

[dep][go](deps): Bump github.com/go-git/go-git/v5 from 5.16.5 to 5.18.0 #649

[dep][go](deps): Bump github.com/go-git/go-git/v5 from 5.16.5 to 5.18.0

[dep][go](deps): Bump github.com/go-git/go-git/v5 from 5.16.5 to 5.18.0 #649

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