Skip to content

build(deps): bump github.com/zclconf/go-cty from 1.17.0 to 1.18.0 #1382

build(deps): bump github.com/zclconf/go-cty from 1.17.0 to 1.18.0

build(deps): bump github.com/zclconf/go-cty from 1.17.0 to 1.18.0 #1382

Workflow file for this run

name: ci
on:
pull_request:
branches:
- main
- pre-release
push:
branches:
- main
- pre-release
permissions:
contents: read
env:
GOPROXY: https://proxy.golang.org/
jobs:
add-copyright-headers:
runs-on: ubuntu-latest
env:
HEAD_REF: ${{ github.event.pull_request.head.ref }}
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
ref: ${{ github.event.pull_request.head.ref }}
repository: ${{ github.event.pull_request.head.repo.full_name }}
- name: Set git identity
run: |-
git config user.name "hashicorp-copywrite[bot]"
git config user.email "110428419+hashicorp-copywrite[bot]@users.noreply.github.com"
- name: Setup Copywrite tool
uses: hashicorp/setup-copywrite@32638da2d4e81d56a0764aa1547882fc4d209636 # v1.1.3
- name: Add headers using Copywrite tool
run: copywrite headers
- name: Check if there are any changes
id: get_changes
run: echo "changed=$(git status --porcelain | wc -l)" >> $GITHUB_OUTPUT
- name: Push changes
if: steps.get_changes.outputs.changed != 0
run: |-
git add .
git commit -s -m "[COMPLIANCE] Add required copyright headers"
git push origin HEAD:$HEAD_REF
copywrite:
runs-on: ubuntu-latest
timeout-minutes: 3
steps:
- name: Checkout Repo
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Install copywrite
uses: hashicorp/setup-copywrite@v1.1.3
- name: Validate Header Compliance
run: copywrite headers --plan
test:
runs-on: ${{ matrix.os }}
timeout-minutes: 5
strategy:
matrix:
os:
- ubuntu-latest
- windows-latest
- macos-latest
steps:
-
name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
-
name: Unshallow
run: git fetch --prune --unshallow
-
name: Set up Go
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
with:
go-version-file: ".go-version"
-
name: Go mod download
run: go mod download -x
-
name: Go mod verify
run: go mod verify
-
name: Run go fmt
run: go run github.com/mh-cbon/go-fmt-fail ./...
-
name: Run tests
run: go test -v -race -covermode=atomic ./...