Skip to content

Commit

Permalink
fix: pin azure devops provider version (#62)
Browse files Browse the repository at this point in the history
* fix: pin azure devops provider version

* linting

* Fix linting
  • Loading branch information
jaredfholgate authored Jan 6, 2025
1 parent 8ddc147 commit e848f90
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/docs-fmt-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@ jobs:
go-version: '1.20.x'
cache-dependency-path: tests/go.sum

- name: Setup Terraform
uses: hashicorp/setup-terraform@v3
with:
terraform_version: latest
terraform_wrapper: false

- name: Install tools
run: make tools

Expand Down
3 changes: 1 addition & 2 deletions alz/azuredevops/terraform.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ terraform {
}
azuredevops = {
source = "microsoft/azuredevops"
version = "~> 1.1"
version = "1.4"
}
random = {
source = "hashicorp/random"
Expand All @@ -38,4 +38,3 @@ provider "azuredevops" {
personal_access_token = var.azure_devops_personal_access_token
org_service_url = module.azure_devops.organization_url
}

2 changes: 1 addition & 1 deletion modules/azure_devops/terraform.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
azuredevops = {
source = "microsoft/azuredevops"
version = "~> 1.1"
version = "1.4"
}
}
}

0 comments on commit e848f90

Please sign in to comment.