From 0cd919c5d6f9ab45b3721c44d29bac35a4648445 Mon Sep 17 00:00:00 2001 From: kelly <69541941+kporter101@users.noreply.github.com> Date: Fri, 5 Sep 2025 17:16:05 -0400 Subject: [PATCH 1/2] updated AWS access key secret and id vars --- .github/workflows/validate.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 96c702ea..9af2b1b8 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -64,8 +64,8 @@ jobs: - uses: aws-actions/configure-aws-credentials@e3dd6a429d7300a6a4c196c26e071d42e0343502 # v4.0.2 with: # The github actions service user creds for this account managed in hashicorp/enos-ci - aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} - aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} + aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID_09042025 }} + aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY_09042025 }} aws-region: "us-east-1" role-to-assume: ${{ secrets.AWS_ROLE_ARN }} role-skip-session-tagging: true From e8ab28d37f185eab2bdc0b7f8d91ff60fcabe3e5 Mon Sep 17 00:00:00 2001 From: kelly <69541941+kporter101@users.noreply.github.com> Date: Mon, 8 Sep 2025 12:19:31 -0400 Subject: [PATCH 2/2] disabled new linters: embeddedstructfieldcheck, funcorder, noinlineerr & wsl_v5 --- .golangci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.golangci.yml b/.golangci.yml index ee01c993..e93214b8 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -18,12 +18,14 @@ linters: - depguard - dogsled - dupl + - embeddedstructfieldcheck - err113 - errname - errorlint - exhaustruct - forbidigo - forcetypeassert + - funcorder - funlen - ginkgolinter - gochecknoglobals @@ -44,6 +46,7 @@ linters: - musttag - nakedret - nestif + - noinlineerr - nonamedreturns - nosprintfhostport - promlinter @@ -56,6 +59,7 @@ linters: - varnamelen - wrapcheck - wsl + - wsl_v5 settings: cyclop: max-complexity: 30