Skip to content

Bump chainguard.dev/sdk from 0.1.23 to 0.1.24 (#172) #210

Bump chainguard.dev/sdk from 0.1.23 to 0.1.24 (#172)

Bump chainguard.dev/sdk from 0.1.23 to 0.1.24 (#172) #210

Workflow file for this run

# Terraform Provider testing workflow.
name: Tests
on:
push:
branches:
- 'main'
- 'releases/**'
paths-ignore:
- 'README.md'
permissions:
contents: read
id-token: write
jobs:
# Run acceptance tests in a matrix with Terraform CLI versions
test:
name: Terraform Provider Acceptance Tests
runs-on: ubuntu-latest
timeout-minutes: 15
strategy:
fail-fast: false
matrix:
# list whatever Terraform versions here you would like to support
terraform:
- '1.8.*'
- '1.9.*'
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
with:
go-version-file: 'go.mod'
cache: true
- uses: chainguard-dev/actions/setup-chainctl@main
with:
identity: "ef127a7c0909329f04b43d845cf80eea4247a07b/66305475446bbef6/51be6000f74f6cb7/72b16b9edc62a069"
- uses: hashicorp/setup-terraform@b9cd54a3c349d3f38e8881555d616ced269862dd # v3.1.2
with:
terraform_version: ${{ matrix.terraform }}
terraform_wrapper: false
- run: go mod download
- env:
TF_ACC: "1"
TF_ACC_GROUP_ID: "ef127a7c0909329f04b43d845cf80eea4247a07b/66305475446bbef6/51be6000f74f6cb7"
TF_CHAINGUARD_IDENTITY: "ef127a7c0909329f04b43d845cf80eea4247a07b/66305475446bbef6/51be6000f74f6cb7/72b16b9edc62a069"
TF_ACC_CONSOLE_API: "https://console-api.enforce.dev"
TF_ACC_AUDIENCE: "https://console-api.enforce.dev"
TF_ACC_ISSUER: "https://issuer.enforce.dev"
TF_ACC_AMBIENT: "1"
run: go test -v -cover ./internal/...
timeout-minutes: 10