From 0d18e3b9126e6d9b45055848c3a7172c4c521034 Mon Sep 17 00:00:00 2001 From: Simar Date: Thu, 27 Jun 2024 16:10:13 -0600 Subject: [PATCH 1/2] chore(deps): Fix goreleaser to use pinned version --- .github/workflows/gh_release.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/gh_release.yml b/.github/workflows/gh_release.yml index a656df578d..817e501fd5 100644 --- a/.github/workflows/gh_release.yml +++ b/.github/workflows/gh_release.yml @@ -42,7 +42,7 @@ jobs: - name: Release uses: goreleaser/goreleaser-action@v4 with: - version: latest - args: release --rm-dist -f .goreleaser_github.yml + version: v1.25.1 + args: release --clean -f .goreleaser_github.yml env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8be7489401..1a45796a14 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -41,8 +41,8 @@ jobs: - name: Release uses: goreleaser/goreleaser-action@v4 with: - version: latest - args: release --rm-dist + version: v1.25.1 + args: release --clean env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} From 8874dd77f1f900117ab7e6bd0fb2374ba9f1624c Mon Sep 17 00:00:00 2001 From: Simar Date: Thu, 27 Jun 2024 16:22:09 -0600 Subject: [PATCH 2/2] fix typos --- docs/checks/aws/cloudtrail/enable-all-regions/index.md | 2 +- docs/checks/aws/redshift/use-vpc/index.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/checks/aws/cloudtrail/enable-all-regions/index.md b/docs/checks/aws/cloudtrail/enable-all-regions/index.md index ba6c309f79..0b0bb28e5a 100644 --- a/docs/checks/aws/cloudtrail/enable-all-regions/index.md +++ b/docs/checks/aws/cloudtrail/enable-all-regions/index.md @@ -8,7 +8,7 @@ title: Cloudtrail should be enabled in all regions regardless of where your AWS ### Explanation -When creating Cloudtrail in the AWS Management Console the trail is configured by default to be multi-region, this isn't the case with the Terraform resource. Cloudtrail should cover the full AWS account to ensure you can track changes in regions you are not actively operting in. +When creating Cloudtrail in the AWS Management Console the trail is configured by default to be multi-region, this isn't the case with the Terraform resource. Cloudtrail should cover the full AWS account to ensure you can track changes in regions you are not actively operating in. ### Possible Impact Activity could be happening in your account in a different region diff --git a/docs/checks/aws/redshift/use-vpc/index.md b/docs/checks/aws/redshift/use-vpc/index.md index 4c1ed944bf..c3022b69c2 100644 --- a/docs/checks/aws/redshift/use-vpc/index.md +++ b/docs/checks/aws/redshift/use-vpc/index.md @@ -8,7 +8,7 @@ title: Redshift cluster should be deployed into a specific VPC ### Explanation -Redshift clusters that are created without subnet details will be created in EC2 classic mode, meaning that they will be outside of a known VPC and running in tennant. +Redshift clusters that are created without subnet details will be created in EC2 classic mode, meaning that they will be outside of a known VPC and running in tenant. In order to benefit from the additional security features achieved with using an owned VPC, the subnet should be set.