Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump aquasecurity/trivy-action from 0.20.0 to 0.24.0 #5

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/trivy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
uses: actions/checkout@v4
- name: Security Scan
if: github.ref != format('refs/heads/{0}', github.event.repository.default_branch)
uses: aquasecurity/trivy-action@0.20.0
uses: aquasecurity/trivy-action@0.24.0
with:
scan-type: 'config'
scan-ref: './examples/complete/'
Expand Down
2 changes: 1 addition & 1 deletion examples/complete/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_version = ">= 1.5.6"
required_providers {
artifactory = {
source = "jfrog/artifactory"
source = "jfrog/artifactory"
version = "10.7.6"
}
}
Expand Down
6 changes: 3 additions & 3 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,18 @@
watch_manager = var.watch_manager
}

resource "artifactory_permission_target" "my_permission_target" {

Check warning on line 25 in main.tf

View workflow job for this annotation

GitHub Actions / Validate Terraform module

Deprecated Resource
name = upper(artifactory_group.this.name)

repo {
actions {
groups {
name = upper(artifactory_group.this.name)
permissions = var.permissions // DEFAULT: ["read", "write"]
name = upper(artifactory_group.this.name)
permissions = var.permissions // DEFAULT: ["read", "write"]
}
}
excludes_pattern = [""]
includes_pattern = ["**"]
repositories = var.repositories // DEFAULT: ["ANY"]
repositories = var.repositories // DEFAULT: ["ANY"]
}
}
4 changes: 2 additions & 2 deletions variables.tf
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
variable "admin_privileges" {
description = "Whether the group has admin privileges"
type = bool
default = false
default = false
}

variable "auto_join" {
description = "Whether new users are automatically added to the group"
type = bool
default = true
default = true
}

variable "external_id" {
Expand Down
Loading