Skip to content

Commit

Permalink
Provider versions may increment patch 🔼 (#7)
Browse files Browse the repository at this point in the history
* allow patch versions to increment

* fix ref for trivy job
  • Loading branch information
alismx authored Nov 12, 2024
1 parent 75bbd5b commit 0a16297
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/trivy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,8 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- name: Run tflint
uses: ghcr.io/terraform-linters/tflint

- name: Run Trivy vulnerability scanner
uses: aquasecurity/trivy-action@0.23.0
uses: aquasecurity/trivy-action@0.28.0
with:
scan-type: 'fs'
scan-ref: .
Expand Down
10 changes: 5 additions & 5 deletions provider.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,22 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "5.56.1"
version = "~> 5.56.1"
}
dockerless = {
source = "nullstone-io/dockerless"
version = "0.1.1"
version = "~> 0.1.1"
}
null = {
source = "hashicorp/null"
version = "3.2.3"
version = "~> 3.2.3"
}
random = {
source = "hashicorp/random"
version = "3.6.3"
version = "~> 3.6.3"
}
}
required_version = "1.9.0"
required_version = "~> 1.9.0"
}

provider "dockerless" {
Expand Down

0 comments on commit 0a16297

Please sign in to comment.