From 3b86d98c8540ce26b896c2aafbc0d32e81a2279e Mon Sep 17 00:00:00 2001 From: Matthew Warman Date: Tue, 7 Apr 2026 06:14:40 -0400 Subject: [PATCH] Update GitHub Actions: Upgrade AWS credentials and artifact upload actions --- .github/workflows/ci.yml | 2 +- .github/workflows/code-quality.yml | 2 +- .github/workflows/deploy-reusable.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6e5615e..65d5511 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -74,7 +74,7 @@ jobs: echo "${{ vars.CDK_ENV_DEV }}" > .env - name: Configure AWS credentials - uses: aws-actions/configure-aws-credentials@v6.0.0 + uses: aws-actions/configure-aws-credentials@v6 with: role-to-assume: ${{ vars.AWS_ROLE_ARN_DEV }} role-session-name: ci-react-starter diff --git a/.github/workflows/code-quality.yml b/.github/workflows/code-quality.yml index 82d572d..c96a786 100644 --- a/.github/workflows/code-quality.yml +++ b/.github/workflows/code-quality.yml @@ -228,7 +228,7 @@ jobs: - name: Archive test results if: always() - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: test-results path: | diff --git a/.github/workflows/deploy-reusable.yml b/.github/workflows/deploy-reusable.yml index 788d828..b436328 100644 --- a/.github/workflows/deploy-reusable.yml +++ b/.github/workflows/deploy-reusable.yml @@ -64,7 +64,7 @@ jobs: run: npm run build:storybook - name: Configure AWS credentials - uses: aws-actions/configure-aws-credentials@v6.0.0 + uses: aws-actions/configure-aws-credentials@v6 with: role-to-assume: ${{ inputs.aws_role_arn }} aws-region: ${{ inputs.aws_region }}