Skip to content

Bump github.com/hashicorp/go-getter from 1.7.5 to 1.7.9 #349

Bump github.com/hashicorp/go-getter from 1.7.5 to 1.7.9

Bump github.com/hashicorp/go-getter from 1.7.5 to 1.7.9 #349

Workflow file for this run

name: "10 - Test: Linting"
on:
push:
tags:
- v*
branches:
- main
- "v*"
workflow_dispatch:
pull_request:
jobs:
golangci:
name: Test Linting
runs-on: ubuntu-latest
steps:
- name: Checkout Pipe Fittings Components repository
uses: actions/checkout@v4
with:
repository: turbot/pipe-fittings
path: pipe-fittings
ref: develop
- name: Checkout Tailpipe plugin SDK repository
uses: actions/checkout@v4
with:
path: tailpipe-plugin-sdk
# this is required, check golangci-lint-action docs
- uses: actions/setup-go@v5
with:
go-version: '1.24'
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@v6
with:
version: latest
args: --timeout=10m
working-directory: tailpipe-plugin-sdk
skip-cache: true