Skip to content

deps: update module github.com/zclconf/go-cty to v1.17.0 (#300) #540

deps: update module github.com/zclconf/go-cty to v1.17.0 (#300)

deps: update module github.com/zclconf/go-cty to v1.17.0 (#300) #540

Workflow file for this run

name: Lint
on:
push:
branches: [main]
pull_request:
env:
GOTOOLCHAIN: local
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-go@v6
with:
go-version: "1.24"
- uses: golangci/golangci-lint-action@v6
with:
version: v1.64.8 # renovate: datasource=github-releases depName=golangci/golangci-lint
args: --timeout 5m
check-mod-tidy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-go@v6
with:
go-version: "1.24"
- run: go mod tidy
- run: git diff --exit-code
- if: failure()
run: echo "::error::Check failed, please run 'go mod tidy' and commit the changes."
check-generate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-go@v6
with:
go-version: "1.24"
- run: make generate
- run: git diff --exit-code
- if: failure()
run: echo "::error::Check failed, please run 'make generate' and commit the changes."