Skip to content

Bump chainguard.dev/sdk from 0.1.216 to 0.1.228 (#295) #642

Bump chainguard.dev/sdk from 0.1.216 to 0.1.228 (#295)

Bump chainguard.dev/sdk from 0.1.216 to 0.1.228 (#295) #642

Workflow file for this run

# Terraform Provider testing workflow.
name: Tests
on:
pull_request:
branches:
- 'main'
paths-ignore:
- 'README.md'
push:
branches:
- 'main'
paths-ignore:
- 'README.md'
permissions: {}
jobs:
test:
name: Terraform Provider Tests
runs-on: ubuntu-latest
timeout-minutes: 15
permissions:
contents: read
id-token: write
strategy:
fail-fast: false
matrix:
# list whatever Terraform versions here you would like to support
terraform:
- '1.14.*'
- '1.15.*'
steps:
- name: Harden the runner (Audit all outbound calls)
uses: step-security/harden-runner@05e31511f85b41b11d1cf0ef85d0992719546e2c # v2.21.0
with:
egress-policy: audit
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0
with:
go-version-file: 'go.mod'
check-latest: true
cache: true
- uses: hashicorp/setup-terraform@dfe3c3f87815947d99a8997f908cb6525fc44e9e # v4.0.1
with:
terraform_version: ${{ matrix.terraform }}
terraform_wrapper: false
- run: go mod download
- run: go test -v -cover ./...
env:
TF_ACC: "1"
TF_LOG: "info"
timeout-minutes: 10