From 1a35cdbf1aa5ea1b7ee24bd48c56c193696525b5 Mon Sep 17 00:00:00 2001 From: Tanner Doshier Date: Tue, 5 Nov 2024 16:24:15 -0500 Subject: [PATCH 1/3] aws-actions/configure-aws-credentials v3 -> v4 https://github.com/aws-actions/configure-aws-credentials/blob/main/CHANGELOG.md#402-2024-02-09 --- .github/actions/configure-aws-credentials/action.yml | 2 +- .github/workflows/check-ci-cd-auth.yml | 2 +- .github/workflows/template-only-ci-infra.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/configure-aws-credentials/action.yml b/.github/actions/configure-aws-credentials/action.yml index 6b573ce9f..6794ec0c1 100644 --- a/.github/actions/configure-aws-credentials/action.yml +++ b/.github/actions/configure-aws-credentials/action.yml @@ -89,7 +89,7 @@ runs: echo "AWS_REGION=${aws_region}" >> "$GITHUB_ENV" shell: bash - name: Configure AWS credentials - uses: aws-actions/configure-aws-credentials@v3 + uses: aws-actions/configure-aws-credentials@v4 with: role-to-assume: ${{ env.AWS_ROLE_TO_ASSUME }} aws-region: ${{ env.AWS_REGION }} diff --git a/.github/workflows/check-ci-cd-auth.yml b/.github/workflows/check-ci-cd-auth.yml index 4a54b9e93..7fd2a00b7 100644 --- a/.github/workflows/check-ci-cd-auth.yml +++ b/.github/workflows/check-ci-cd-auth.yml @@ -23,7 +23,7 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - name: Configure AWS credentials - uses: aws-actions/configure-aws-credentials@v3 + uses: aws-actions/configure-aws-credentials@v4 with: aws-region: ${{ inputs.aws_region }} role-to-assume: ${{ inputs.role_to_assume }} diff --git a/.github/workflows/template-only-ci-infra.yml b/.github/workflows/template-only-ci-infra.yml index 486032446..58396a41e 100644 --- a/.github/workflows/template-only-ci-infra.yml +++ b/.github/workflows/template-only-ci-infra.yml @@ -41,7 +41,7 @@ jobs: with: go-version: ">=1.19.0" - name: Configure AWS credentials - uses: aws-actions/configure-aws-credentials@v3 + uses: aws-actions/configure-aws-credentials@v4 with: aws-region: us-east-1 From c4cfc320032028ede13f1b08d2d98a75ac311b44 Mon Sep 17 00:00:00 2001 From: Tanner Doshier Date: Tue, 5 Nov 2024 16:27:08 -0500 Subject: [PATCH 2/3] actions/setup-python v4 -> v5 --- .github/workflows/ci-infra.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-infra.yml b/.github/workflows/ci-infra.yml index d9e4698d9..78a82f9cd 100644 --- a/.github/workflows/ci-infra.yml +++ b/.github/workflows/ci-infra.yml @@ -65,7 +65,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: actions/setup-python@v4 + - uses: actions/setup-python@v5 with: python-version: "3.10" - name: Run Checkov check From a63701a6e8d416ba88a2b04292b6536fd3699890 Mon Sep 17 00:00:00 2001 From: Tanner Doshier Date: Tue, 5 Nov 2024 16:27:23 -0500 Subject: [PATCH 3/3] actions/setup-go v3 -> v5 --- .github/workflows/ci-infra-service.yml | 2 +- .github/workflows/template-only-ci-infra.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-infra-service.yml b/.github/workflows/ci-infra-service.yml index 7c486c990..28d80584c 100644 --- a/.github/workflows/ci-infra-service.yml +++ b/.github/workflows/ci-infra-service.yml @@ -35,7 +35,7 @@ jobs: terraform_version: 1.8.3 terraform_wrapper: false - - uses: actions/setup-go@v3 + - uses: actions/setup-go@v5 with: go-version: ">=1.19.0" diff --git a/.github/workflows/template-only-ci-infra.yml b/.github/workflows/template-only-ci-infra.yml index 58396a41e..79a7f8347 100644 --- a/.github/workflows/template-only-ci-infra.yml +++ b/.github/workflows/template-only-ci-infra.yml @@ -37,7 +37,7 @@ jobs: with: terraform_version: 1.8.3 terraform_wrapper: false - - uses: actions/setup-go@v3 + - uses: actions/setup-go@v5 with: go-version: ">=1.19.0" - name: Configure AWS credentials