Skip to content

Commit

Permalink
fix(ci): use the actual min and max versions in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tembleking committed Jan 8, 2024
1 parent 01db9db commit d3f3be3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pre-commit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
- name: Install Terraform v${{ steps.minMax.outputs.minVersion }}
uses: hashicorp/setup-terraform@v1
with:
terraform_version: 1.5 # ${{ steps.minMax.outputs.minVersion }}
terraform_version: ${{ steps.minMax.outputs.minVersion }}
- name: Install pre-commit dependencies
run: |
pip install pre-commit
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
- name: Install Terraform v${{ matrix.version }}
uses: hashicorp/setup-terraform@v1
with:
terraform_version: 1.5 #${{ matrix.version }}
terraform_version: ${{ matrix.version }}
- name: Install pre-commit dependencies
run: |
pip install pre-commit
Expand Down

0 comments on commit d3f3be3

Please sign in to comment.