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

Build(deps): Bump actions/checkout from 3.5.3 to 3.6.0 #237

Merged
merged 1 commit into from
Aug 25, 2023

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 25, 2023

Bumps actions/checkout from 3.5.3 to 3.6.0.

Release notes

Sourced from actions/checkout's releases.

v3.6.0

What's Changed

New Contributors

Full Changelog: actions/checkout@v3.5.3...v3.6.0

Changelog

Sourced from actions/checkout's changelog.

Changelog

v3.6.0

v3.5.3

v3.5.2

v3.5.1

v3.5.0

v3.4.0

v3.3.0

v3.2.0

v3.1.0

v3.0.2

v3.0.1

v3.0.0

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

@dependabot dependabot bot requested a review from a team as a code owner August 25, 2023 09:41
@dependabot dependabot bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels Aug 25, 2023
@github-actions
Copy link
Contributor

TFSEC Scan Success

Show Output
*****************************

TFSEC will check the following folders:
.

*****************************

Running TFSEC in .
Excluding the following checks: AWS089, AWS099, AWS009, AWS097, AWS018
  timings
  ──────────────────────────────────────────
  disk i/o             118.9µs
  parsing              22.151146ms
  adaptation           212.8µs
  checks               8.725818ms
  total                31.208664ms

  counts
  ──────────────────────────────────────────
  modules downloaded   0
  modules processed    1
  blocks processed     42
  files read           4

  results
  ──────────────────────────────────────────
  passed               8
  ignored              4
  critical             0
  high                 0
  medium               0
  low                  0


No problems detected!

tfsec_exitcode=0

Checkov Scan Failed

Show Output
*****************************

Checkov will check the following folders:
.

*****************************

Running Checkov in .
Excluding the following checks: CKV_GIT_1
terraform scan results:

Passed checks: 83, Failed checks: 6, Skipped checks: 16

Check: CKV_AWS_300: "Ensure S3 lifecycle configuration sets period for aborting failed uploads"
	FAILED for resource: module.s3.aws_s3_bucket_lifecycle_configuration.default
	File: /main.tf:39-98
	Calling File: /test/unit-test/main.tf:1-9

		Code lines for this resource are too many. Please use IDE of your choice to review the file.
Check: CKV_AWS_300: "Ensure S3 lifecycle configuration sets period for aborting failed uploads"
	FAILED for resource: module.s3_with_AES256.aws_s3_bucket_lifecycle_configuration.default
	File: /main.tf:39-98
	Calling File: /test/unit-test/main.tf:11-20

		Code lines for this resource are too many. Please use IDE of your choice to review the file.
Check: CKV2_AWS_62: "Ensure S3 buckets should have event notifications enabled"
	FAILED for resource: module.s3.aws_s3_bucket.default
	File: /main.tf:8-19

		8  | resource "aws_s3_bucket" "default" {
		9  |   #checkov:skip=CKV_AWS_144: "Replication handled in replication configuration resource"
		10 |   #checkov:skip=CKV_AWS_18: "Logging handled in logging configuration resource"
		11 |   #checkov:skip=CKV_AWS_21: "Versioning handled in Versioning configuration resource"
		12 |   #checkov:skip=CKV_AWS_145: "Encryption handled in encryption configuration resource"
		13 | 
		14 |   bucket        = var.bucket_name
		15 |   bucket_prefix = var.bucket_prefix
		16 |   force_destroy = var.force_destroy
		17 | 
		18 |   tags = var.tags
		19 | }

Check: CKV2_AWS_62: "Ensure S3 buckets should have event notifications enabled"
	FAILED for resource: module.s3.aws_s3_bucket.replication
	File: /main.tf:230-243

		230 | resource "aws_s3_bucket" "replication" {
		231 |   #checkov:skip=CKV_AWS_144: "Replication not required on replication bucket"
		232 |   #checkov:skip=CKV_AWS_18: "Logging handled in logging configuration resource"
		233 |   #checkov:skip=CKV_AWS_21: "Versioning handled in versioning configuration resource"
		234 |   #checkov:skip=CKV_AWS_145: "Encryption handled in encryption configuration resource"
		235 | 
		236 |   count = var.replication_enabled ? 1 : 0
		237 | 
		238 |   provider      = aws.bucket-replication
		239 |   bucket        = (var.bucket_name != null) ? "${var.bucket_name}-replication" : null
		240 |   bucket_prefix = (var.bucket_prefix != null) ? "${var.bucket_prefix}-replication" : null
		241 |   force_destroy = var.force_destroy
		242 |   tags          = var.tags
		243 | }

Check: CKV2_AWS_62: "Ensure S3 buckets should have event notifications enabled"
	FAILED for resource: module.s3_with_AES256.aws_s3_bucket.default
	File: /main.tf:8-19

		8  | resource "aws_s3_bucket" "default" {
		9  |   #checkov:skip=CKV_AWS_144: "Replication handled in replication configuration resource"
		10 |   #checkov:skip=CKV_AWS_18: "Logging handled in logging configuration resource"
		11 |   #checkov:skip=CKV_AWS_21: "Versioning handled in Versioning configuration resource"
		12 |   #checkov:skip=CKV_AWS_145: "Encryption handled in encryption configuration resource"
		13 | 
		14 |   bucket        = var.bucket_name
		15 |   bucket_prefix = var.bucket_prefix
		16 |   force_destroy = var.force_destroy
		17 | 
		18 |   tags = var.tags
		19 | }

Check: CKV2_AWS_62: "Ensure S3 buckets should have event notifications enabled"
	FAILED for resource: module.s3_with_AES256.aws_s3_bucket.replication
	File: /main.tf:230-243

		230 | resource "aws_s3_bucket" "replication" {
		231 |   #checkov:skip=CKV_AWS_144: "Replication not required on replication bucket"
		232 |   #checkov:skip=CKV_AWS_18: "Logging handled in logging configuration resource"
		233 |   #checkov:skip=CKV_AWS_21: "Versioning handled in versioning configuration resource"
		234 |   #checkov:skip=CKV_AWS_145: "Encryption handled in encryption configuration resource"
		235 | 
		236 |   count = var.replication_enabled ? 1 : 0
		237 | 
		238 |   provider      = aws.bucket-replication
		239 |   bucket        = (var.bucket_name != null) ? "${var.bucket_name}-replication" : null
		240 |   bucket_prefix = (var.bucket_prefix != null) ? "${var.bucket_prefix}-replication" : null
		241 |   force_destroy = var.force_destroy
		242 |   tags          = var.tags
		243 | }

github_actions scan results:

Passed checks: 175, Failed checks: 1, Skipped checks: 0

Check: CKV2_GHA_1: "Ensure top-level permissions are not set to write-all"
	FAILED for resource: on(Generate Terraform README docs)
	File: /.github/workflows/documentation.yml:0-1

checkov_exitcode=1

CTFLint Scan Success

Show Output
*****************************

Setting default tflint config...
Running tflint --init...
Installing `terraform` plugin...
Installed `terraform` (source: github.com/terraform-linters/tflint-ruleset-terraform, version: 0.2.1)
tflint will check the following folders:
.

*****************************

Running tflint in .
tflint_exitcode=0

@dependabot dependabot bot force-pushed the dependabot/github_actions/actions/checkout-3.6.0 branch from c89fda9 to 8915c63 Compare August 25, 2023 10:02
@github-actions
Copy link
Contributor

TFSEC Scan Success

Show Output
*****************************

TFSEC will check the following folders:
.

*****************************

Running TFSEC in .
Excluding the following checks: AWS089, AWS099, AWS009, AWS097, AWS018
  timings
  ──────────────────────────────────────────
  disk i/o             119.899µs
  parsing              20.625487ms
  adaptation           1.259493ms
  checks               9.338149ms
  total                31.343028ms

  counts
  ──────────────────────────────────────────
  modules downloaded   0
  modules processed    1
  blocks processed     42
  files read           4

  results
  ──────────────────────────────────────────
  passed               8
  ignored              4
  critical             0
  high                 0
  medium               0
  low                  0


No problems detected!

tfsec_exitcode=0

Checkov Scan Failed

Show Output
*****************************

Checkov will check the following folders:
.

*****************************

Running Checkov in .
Excluding the following checks: CKV_GIT_1
terraform scan results:

Passed checks: 83, Failed checks: 6, Skipped checks: 16

Check: CKV_AWS_300: "Ensure S3 lifecycle configuration sets period for aborting failed uploads"
	FAILED for resource: module.s3.aws_s3_bucket_lifecycle_configuration.default
	File: /main.tf:39-98
	Calling File: /test/unit-test/main.tf:1-9

		Code lines for this resource are too many. Please use IDE of your choice to review the file.
Check: CKV_AWS_300: "Ensure S3 lifecycle configuration sets period for aborting failed uploads"
	FAILED for resource: module.s3_with_AES256.aws_s3_bucket_lifecycle_configuration.default
	File: /main.tf:39-98
	Calling File: /test/unit-test/main.tf:11-20

		Code lines for this resource are too many. Please use IDE of your choice to review the file.
Check: CKV2_AWS_62: "Ensure S3 buckets should have event notifications enabled"
	FAILED for resource: module.s3.aws_s3_bucket.default
	File: /main.tf:8-19

		8  | resource "aws_s3_bucket" "default" {
		9  |   #checkov:skip=CKV_AWS_144: "Replication handled in replication configuration resource"
		10 |   #checkov:skip=CKV_AWS_18: "Logging handled in logging configuration resource"
		11 |   #checkov:skip=CKV_AWS_21: "Versioning handled in Versioning configuration resource"
		12 |   #checkov:skip=CKV_AWS_145: "Encryption handled in encryption configuration resource"
		13 | 
		14 |   bucket        = var.bucket_name
		15 |   bucket_prefix = var.bucket_prefix
		16 |   force_destroy = var.force_destroy
		17 | 
		18 |   tags = var.tags
		19 | }

Check: CKV2_AWS_62: "Ensure S3 buckets should have event notifications enabled"
	FAILED for resource: module.s3.aws_s3_bucket.replication
	File: /main.tf:230-243

		230 | resource "aws_s3_bucket" "replication" {
		231 |   #checkov:skip=CKV_AWS_144: "Replication not required on replication bucket"
		232 |   #checkov:skip=CKV_AWS_18: "Logging handled in logging configuration resource"
		233 |   #checkov:skip=CKV_AWS_21: "Versioning handled in versioning configuration resource"
		234 |   #checkov:skip=CKV_AWS_145: "Encryption handled in encryption configuration resource"
		235 | 
		236 |   count = var.replication_enabled ? 1 : 0
		237 | 
		238 |   provider      = aws.bucket-replication
		239 |   bucket        = (var.bucket_name != null) ? "${var.bucket_name}-replication" : null
		240 |   bucket_prefix = (var.bucket_prefix != null) ? "${var.bucket_prefix}-replication" : null
		241 |   force_destroy = var.force_destroy
		242 |   tags          = var.tags
		243 | }

Check: CKV2_AWS_62: "Ensure S3 buckets should have event notifications enabled"
	FAILED for resource: module.s3_with_AES256.aws_s3_bucket.default
	File: /main.tf:8-19

		8  | resource "aws_s3_bucket" "default" {
		9  |   #checkov:skip=CKV_AWS_144: "Replication handled in replication configuration resource"
		10 |   #checkov:skip=CKV_AWS_18: "Logging handled in logging configuration resource"
		11 |   #checkov:skip=CKV_AWS_21: "Versioning handled in Versioning configuration resource"
		12 |   #checkov:skip=CKV_AWS_145: "Encryption handled in encryption configuration resource"
		13 | 
		14 |   bucket        = var.bucket_name
		15 |   bucket_prefix = var.bucket_prefix
		16 |   force_destroy = var.force_destroy
		17 | 
		18 |   tags = var.tags
		19 | }

Check: CKV2_AWS_62: "Ensure S3 buckets should have event notifications enabled"
	FAILED for resource: module.s3_with_AES256.aws_s3_bucket.replication
	File: /main.tf:230-243

		230 | resource "aws_s3_bucket" "replication" {
		231 |   #checkov:skip=CKV_AWS_144: "Replication not required on replication bucket"
		232 |   #checkov:skip=CKV_AWS_18: "Logging handled in logging configuration resource"
		233 |   #checkov:skip=CKV_AWS_21: "Versioning handled in versioning configuration resource"
		234 |   #checkov:skip=CKV_AWS_145: "Encryption handled in encryption configuration resource"
		235 | 
		236 |   count = var.replication_enabled ? 1 : 0
		237 | 
		238 |   provider      = aws.bucket-replication
		239 |   bucket        = (var.bucket_name != null) ? "${var.bucket_name}-replication" : null
		240 |   bucket_prefix = (var.bucket_prefix != null) ? "${var.bucket_prefix}-replication" : null
		241 |   force_destroy = var.force_destroy
		242 |   tags          = var.tags
		243 | }

github_actions scan results:

Passed checks: 175, Failed checks: 1, Skipped checks: 0

Check: CKV2_GHA_1: "Ensure top-level permissions are not set to write-all"
	FAILED for resource: on(Generate Terraform README docs)
	File: /.github/workflows/documentation.yml:0-1

checkov_exitcode=1

CTFLint Scan Success

Show Output
*****************************

Setting default tflint config...
Running tflint --init...
Installing `terraform` plugin...
Installed `terraform` (source: github.com/terraform-linters/tflint-ruleset-terraform, version: 0.2.1)
tflint will check the following folders:
.

*****************************

Running tflint in .
tflint_exitcode=0

@ASTRobinson
Copy link
Contributor

@dependabot rebase

Bumps [actions/checkout](https://github.com/actions/checkout) from 3.5.3 to 3.6.0.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@c85c95e...f43a0e5)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/github_actions/actions/checkout-3.6.0 branch from 8915c63 to 6be7619 Compare August 25, 2023 10:18
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 25, 2023

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot dependabot bot deleted the dependabot/github_actions/actions/checkout-3.6.0 branch August 25, 2023 10:18
@ASTRobinson ASTRobinson restored the dependabot/github_actions/actions/checkout-3.6.0 branch August 25, 2023 10:19
@ASTRobinson ASTRobinson reopened this Aug 25, 2023
@github-actions
Copy link
Contributor

TFSEC Scan Success

Show Output
*****************************

TFSEC will check the following folders:
.

*****************************

Running TFSEC in .
Excluding the following checks: AWS089, AWS099, AWS009, AWS097, AWS018
  timings
  ──────────────────────────────────────────
  disk i/o             182.501µs
  parsing              19.859369ms
  adaptation           361.303µs
  checks               14.632925ms
  total                35.036098ms

  counts
  ──────────────────────────────────────────
  modules downloaded   0
  modules processed    1
  blocks processed     42
  files read           4

  results
  ──────────────────────────────────────────
  passed               8
  ignored              4
  critical             0
  high                 0
  medium               0
  low                  0


No problems detected!

tfsec_exitcode=0

Checkov Scan Failed

Show Output
*****************************

Checkov will check the following folders:
.

*****************************

Running Checkov in .
Excluding the following checks: CKV_GIT_1
terraform scan results:

Passed checks: 83, Failed checks: 6, Skipped checks: 16

Check: CKV_AWS_300: "Ensure S3 lifecycle configuration sets period for aborting failed uploads"
	FAILED for resource: module.s3.aws_s3_bucket_lifecycle_configuration.default
	File: /main.tf:39-98
	Calling File: /test/unit-test/main.tf:1-9

		Code lines for this resource are too many. Please use IDE of your choice to review the file.
Check: CKV_AWS_300: "Ensure S3 lifecycle configuration sets period for aborting failed uploads"
	FAILED for resource: module.s3_with_AES256.aws_s3_bucket_lifecycle_configuration.default
	File: /main.tf:39-98
	Calling File: /test/unit-test/main.tf:11-20

		Code lines for this resource are too many. Please use IDE of your choice to review the file.
Check: CKV2_AWS_62: "Ensure S3 buckets should have event notifications enabled"
	FAILED for resource: module.s3.aws_s3_bucket.default
	File: /main.tf:8-19

		8  | resource "aws_s3_bucket" "default" {
		9  |   #checkov:skip=CKV_AWS_144: "Replication handled in replication configuration resource"
		10 |   #checkov:skip=CKV_AWS_18: "Logging handled in logging configuration resource"
		11 |   #checkov:skip=CKV_AWS_21: "Versioning handled in Versioning configuration resource"
		12 |   #checkov:skip=CKV_AWS_145: "Encryption handled in encryption configuration resource"
		13 | 
		14 |   bucket        = var.bucket_name
		15 |   bucket_prefix = var.bucket_prefix
		16 |   force_destroy = var.force_destroy
		17 | 
		18 |   tags = var.tags
		19 | }

Check: CKV2_AWS_62: "Ensure S3 buckets should have event notifications enabled"
	FAILED for resource: module.s3.aws_s3_bucket.replication
	File: /main.tf:230-243

		230 | resource "aws_s3_bucket" "replication" {
		231 |   #checkov:skip=CKV_AWS_144: "Replication not required on replication bucket"
		232 |   #checkov:skip=CKV_AWS_18: "Logging handled in logging configuration resource"
		233 |   #checkov:skip=CKV_AWS_21: "Versioning handled in versioning configuration resource"
		234 |   #checkov:skip=CKV_AWS_145: "Encryption handled in encryption configuration resource"
		235 | 
		236 |   count = var.replication_enabled ? 1 : 0
		237 | 
		238 |   provider      = aws.bucket-replication
		239 |   bucket        = (var.bucket_name != null) ? "${var.bucket_name}-replication" : null
		240 |   bucket_prefix = (var.bucket_prefix != null) ? "${var.bucket_prefix}-replication" : null
		241 |   force_destroy = var.force_destroy
		242 |   tags          = var.tags
		243 | }

Check: CKV2_AWS_62: "Ensure S3 buckets should have event notifications enabled"
	FAILED for resource: module.s3_with_AES256.aws_s3_bucket.default
	File: /main.tf:8-19

		8  | resource "aws_s3_bucket" "default" {
		9  |   #checkov:skip=CKV_AWS_144: "Replication handled in replication configuration resource"
		10 |   #checkov:skip=CKV_AWS_18: "Logging handled in logging configuration resource"
		11 |   #checkov:skip=CKV_AWS_21: "Versioning handled in Versioning configuration resource"
		12 |   #checkov:skip=CKV_AWS_145: "Encryption handled in encryption configuration resource"
		13 | 
		14 |   bucket        = var.bucket_name
		15 |   bucket_prefix = var.bucket_prefix
		16 |   force_destroy = var.force_destroy
		17 | 
		18 |   tags = var.tags
		19 | }

Check: CKV2_AWS_62: "Ensure S3 buckets should have event notifications enabled"
	FAILED for resource: module.s3_with_AES256.aws_s3_bucket.replication
	File: /main.tf:230-243

		230 | resource "aws_s3_bucket" "replication" {
		231 |   #checkov:skip=CKV_AWS_144: "Replication not required on replication bucket"
		232 |   #checkov:skip=CKV_AWS_18: "Logging handled in logging configuration resource"
		233 |   #checkov:skip=CKV_AWS_21: "Versioning handled in versioning configuration resource"
		234 |   #checkov:skip=CKV_AWS_145: "Encryption handled in encryption configuration resource"
		235 | 
		236 |   count = var.replication_enabled ? 1 : 0
		237 | 
		238 |   provider      = aws.bucket-replication
		239 |   bucket        = (var.bucket_name != null) ? "${var.bucket_name}-replication" : null
		240 |   bucket_prefix = (var.bucket_prefix != null) ? "${var.bucket_prefix}-replication" : null
		241 |   force_destroy = var.force_destroy
		242 |   tags          = var.tags
		243 | }

github_actions scan results:

Passed checks: 175, Failed checks: 1, Skipped checks: 0

Check: CKV2_GHA_1: "Ensure top-level permissions are not set to write-all"
	FAILED for resource: on(Generate Terraform README docs)
	File: /.github/workflows/documentation.yml:0-1

checkov_exitcode=1

CTFLint Scan Success

Show Output
*****************************

Setting default tflint config...
Running tflint --init...
Installing `terraform` plugin...
Installed `terraform` (source: github.com/terraform-linters/tflint-ruleset-terraform, version: 0.2.1)
tflint will check the following folders:
.

*****************************

Running tflint in .
tflint_exitcode=0

@github-actions
Copy link
Contributor

TFSEC Scan Success

Show Output
*****************************

TFSEC will check the following folders:
.

*****************************

Running TFSEC in .
Excluding the following checks: AWS089, AWS099, AWS009, AWS097, AWS018
  timings
  ──────────────────────────────────────────
  disk i/o             116.5µs
  parsing              17.264365ms
  adaptation           271.598µs
  checks               10.603416ms
  total                28.255879ms

  counts
  ──────────────────────────────────────────
  modules downloaded   0
  modules processed    1
  blocks processed     42
  files read           4

  results
  ──────────────────────────────────────────
  passed               8
  ignored              4
  critical             0
  high                 0
  medium               0
  low                  0


No problems detected!

tfsec_exitcode=0

Checkov Scan Failed

Show Output
*****************************

Checkov will check the following folders:
.

*****************************

Running Checkov in .
Excluding the following checks: CKV_GIT_1
terraform scan results:

Passed checks: 83, Failed checks: 6, Skipped checks: 16

Check: CKV_AWS_300: "Ensure S3 lifecycle configuration sets period for aborting failed uploads"
	FAILED for resource: module.s3.aws_s3_bucket_lifecycle_configuration.default
	File: /main.tf:39-98
	Calling File: /test/unit-test/main.tf:1-9

		Code lines for this resource are too many. Please use IDE of your choice to review the file.
Check: CKV_AWS_300: "Ensure S3 lifecycle configuration sets period for aborting failed uploads"
	FAILED for resource: module.s3_with_AES256.aws_s3_bucket_lifecycle_configuration.default
	File: /main.tf:39-98
	Calling File: /test/unit-test/main.tf:11-20

		Code lines for this resource are too many. Please use IDE of your choice to review the file.
Check: CKV2_AWS_62: "Ensure S3 buckets should have event notifications enabled"
	FAILED for resource: module.s3.aws_s3_bucket.default
	File: /main.tf:8-19

		8  | resource "aws_s3_bucket" "default" {
		9  |   #checkov:skip=CKV_AWS_144: "Replication handled in replication configuration resource"
		10 |   #checkov:skip=CKV_AWS_18: "Logging handled in logging configuration resource"
		11 |   #checkov:skip=CKV_AWS_21: "Versioning handled in Versioning configuration resource"
		12 |   #checkov:skip=CKV_AWS_145: "Encryption handled in encryption configuration resource"
		13 | 
		14 |   bucket        = var.bucket_name
		15 |   bucket_prefix = var.bucket_prefix
		16 |   force_destroy = var.force_destroy
		17 | 
		18 |   tags = var.tags
		19 | }

Check: CKV2_AWS_62: "Ensure S3 buckets should have event notifications enabled"
	FAILED for resource: module.s3.aws_s3_bucket.replication
	File: /main.tf:230-243

		230 | resource "aws_s3_bucket" "replication" {
		231 |   #checkov:skip=CKV_AWS_144: "Replication not required on replication bucket"
		232 |   #checkov:skip=CKV_AWS_18: "Logging handled in logging configuration resource"
		233 |   #checkov:skip=CKV_AWS_21: "Versioning handled in versioning configuration resource"
		234 |   #checkov:skip=CKV_AWS_145: "Encryption handled in encryption configuration resource"
		235 | 
		236 |   count = var.replication_enabled ? 1 : 0
		237 | 
		238 |   provider      = aws.bucket-replication
		239 |   bucket        = (var.bucket_name != null) ? "${var.bucket_name}-replication" : null
		240 |   bucket_prefix = (var.bucket_prefix != null) ? "${var.bucket_prefix}-replication" : null
		241 |   force_destroy = var.force_destroy
		242 |   tags          = var.tags
		243 | }

Check: CKV2_AWS_62: "Ensure S3 buckets should have event notifications enabled"
	FAILED for resource: module.s3_with_AES256.aws_s3_bucket.default
	File: /main.tf:8-19

		8  | resource "aws_s3_bucket" "default" {
		9  |   #checkov:skip=CKV_AWS_144: "Replication handled in replication configuration resource"
		10 |   #checkov:skip=CKV_AWS_18: "Logging handled in logging configuration resource"
		11 |   #checkov:skip=CKV_AWS_21: "Versioning handled in Versioning configuration resource"
		12 |   #checkov:skip=CKV_AWS_145: "Encryption handled in encryption configuration resource"
		13 | 
		14 |   bucket        = var.bucket_name
		15 |   bucket_prefix = var.bucket_prefix
		16 |   force_destroy = var.force_destroy
		17 | 
		18 |   tags = var.tags
		19 | }

Check: CKV2_AWS_62: "Ensure S3 buckets should have event notifications enabled"
	FAILED for resource: module.s3_with_AES256.aws_s3_bucket.replication
	File: /main.tf:230-243

		230 | resource "aws_s3_bucket" "replication" {
		231 |   #checkov:skip=CKV_AWS_144: "Replication not required on replication bucket"
		232 |   #checkov:skip=CKV_AWS_18: "Logging handled in logging configuration resource"
		233 |   #checkov:skip=CKV_AWS_21: "Versioning handled in versioning configuration resource"
		234 |   #checkov:skip=CKV_AWS_145: "Encryption handled in encryption configuration resource"
		235 | 
		236 |   count = var.replication_enabled ? 1 : 0
		237 | 
		238 |   provider      = aws.bucket-replication
		239 |   bucket        = (var.bucket_name != null) ? "${var.bucket_name}-replication" : null
		240 |   bucket_prefix = (var.bucket_prefix != null) ? "${var.bucket_prefix}-replication" : null
		241 |   force_destroy = var.force_destroy
		242 |   tags          = var.tags
		243 | }

github_actions scan results:

Passed checks: 175, Failed checks: 1, Skipped checks: 0

Check: CKV2_GHA_1: "Ensure top-level permissions are not set to write-all"
	FAILED for resource: on(Generate Terraform README docs)
	File: /.github/workflows/documentation.yml:0-1

checkov_exitcode=1

CTFLint Scan Success

Show Output
*****************************

Setting default tflint config...
Running tflint --init...
Installing `terraform` plugin...
Installed `terraform` (source: github.com/terraform-linters/tflint-ruleset-terraform, version: 0.2.1)
tflint will check the following folders:
.

*****************************

Running tflint in .
tflint_exitcode=0

@dms1981 dms1981 merged commit 41cfdc1 into main Aug 25, 2023
@dms1981 dms1981 deleted the dependabot/github_actions/actions/checkout-3.6.0 branch August 25, 2023 10:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants