This repository has been archived by the owner on May 13, 2024. It is now read-only.
build(deps): bump github.com/hashicorp/terraform-plugin-go from 0.22.2 to 0.23.0 #94
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Terraform Provider testing workflow. | |
name: Tests | |
# This GitHub action runs your tests for each pull request and push. | |
# Optionally, you can turn it on using a schedule for regular testing. | |
on: | |
pull_request: | |
paths-ignore: | |
- 'README.md' | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- 'README.md' | |
# Testing only needs permissions to read the repository contents. | |
permissions: | |
contents: read | |
id-token: write # Required for Azure federated identities | |
jobs: | |
# Ensure project builds before running testing matrix | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0 | |
with: | |
go-version-file: 'go.mod' | |
cache: true | |
- run: go mod download | |
- run: go build -v . | |
- name: Run linters | |
uses: golangci/golangci-lint-action@3a919529898de77ec3da873e3063ca4b10e7f5cc # v3.7.0 | |
with: | |
version: latest | |
skip-pkg-cache: true | |
skip-build-cache: true | |
generate: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0 | |
with: | |
go-version-file: 'go.mod' | |
cache: true | |
- run: go generate ./... | |
- name: git diff | |
run: | | |
git diff --compact-summary --exit-code || \ | |
(echo; echo "Unexpected difference in directories after code generation. Run 'go generate ./...' command and commit."; exit 1) | |
# Run acceptance tests in a matrix with Terraform CLI versions | |
test: | |
name: Terraform Provider Acceptance Tests | |
needs: build | |
runs-on: ubuntu-latest | |
environment: terraform-test | |
concurrency: | |
group: terraform-test | |
timeout-minutes: 15 | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0 | |
with: | |
go-version-file: 'go.mod' | |
cache: true | |
- uses: hashicorp/setup-terraform@633666f66e0061ca3b725c73b2ec20cd13a8fdd1 # v2.0.3 | |
with: | |
terraform_version: "1.7.0" | |
terraform_wrapper: false | |
- name: Install actions/core | |
run: npm i @actions/core | |
- name: Get Id Token from GitHub | |
uses: actions/github-script@v7 | |
id: idtoken | |
with: | |
script: | | |
const c = require('@actions/core') | |
const f = require('fs') | |
let id_token = await c.getIDToken('api://AzureADTokenExchange') | |
f.mkdirSync('secrets') | |
f.writeFileSync('${{ github.workspace }}/secrets/id_token', id_token); | |
- run: go mod download | |
- env: | |
TF_ACC: "1" | |
# For the azurepim provider | |
AZURE_TENANT_ID: ${{ vars.AZURE_TENANT_ID }} | |
AZURE_CLIENT_ID: ${{ vars.AZURE_CLIENT_ID }} | |
AZURE_AUTHORITY_HOST: https://login.microsoftonline.com/ | |
AZURE_FEDERATED_TOKEN_FILE: "${{ github.workspace }}/secrets/id_token" | |
# For the azuread provider | |
ARM_USE_OIDC: "true" | |
ARM_OIDC_TOKEN_FILE_PATH: "${{ github.workspace }}/secrets/id_token" | |
ARM_TENANT_ID: ${{ vars.AZURE_TENANT_ID }} | |
ARM_CLIENT_ID: ${{ vars.AZURE_CLIENT_ID }} | |
run: go test -v -cover ./internal/provider/ | |
timeout-minutes: 10 |