From 037200df281a6e0ee5f5f8e43dfeb1681ae4c3a4 Mon Sep 17 00:00:00 2001 From: Aron Atkins Date: Fri, 24 May 2024 10:43:46 -0400 Subject: [PATCH] upgrade to aws-actions/configure-aws-credentials@v4 (#596) --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1aefe238..eef8d5c1 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -109,7 +109,7 @@ jobs: asset_path: ${{ steps.create_dist.outputs.whl }} asset_name: ${{ steps.create_dist.outputs.whl_basename }} asset_content_type: application/x-wheel+zip - - uses: aws-actions/configure-aws-credentials@v1 + - uses: aws-actions/configure-aws-credentials@v4 id: creds with: role-to-assume: ${{ secrets.AWS_ROLE_TO_ASSUME }} @@ -142,7 +142,7 @@ jobs: with: name: docs path: docs/site/ - - uses: aws-actions/configure-aws-credentials@v1 + - uses: aws-actions/configure-aws-credentials@v4 id: creds with: role-to-assume: ${{ secrets.AWS_ROLE_TO_ASSUME }} @@ -150,7 +150,7 @@ jobs: - if: github.event_name == 'push' && github.ref == 'refs/heads/main' run: make sync-latest-docs-to-s3 - if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') - uses: aws-actions/configure-aws-credentials@v1 + uses: aws-actions/configure-aws-credentials@v4 with: role-to-assume: ${{ secrets.DOCS_AWS_ROLE }} aws-region: us-east-1