From 20f3010529653d91ee20126e59e1d787f922ba29 Mon Sep 17 00:00:00 2001 From: Peter Deme Date: Tue, 14 Mar 2023 10:15:47 +0100 Subject: [PATCH] Update deprecated GH Action (#32) https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ --- .github/workflows/preprod-deployment.yml | 2 +- .github/workflows/prod-deployment.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/preprod-deployment.yml b/.github/workflows/preprod-deployment.yml index 954cebe..5b66e1e 100644 --- a/.github/workflows/preprod-deployment.yml +++ b/.github/workflows/preprod-deployment.yml @@ -66,7 +66,7 @@ jobs: - name: Configure AWS credentials if: github.ref == 'refs/heads/future' - uses: aws-actions/configure-aws-credentials@v1 + uses: aws-actions/configure-aws-credentials@v2 with: aws-region: ${{ secrets.PREPROD_AWS_REGION }} role-to-assume: ${{ secrets.PREPROD_AWS_ROLE_TO_ASSUME }} diff --git a/.github/workflows/prod-deployment.yml b/.github/workflows/prod-deployment.yml index 90f0f88..d0d1432 100644 --- a/.github/workflows/prod-deployment.yml +++ b/.github/workflows/prod-deployment.yml @@ -65,7 +65,7 @@ jobs: run: mkdir -p upload/pulumi-plugins && mv package/*/*.tar.gz upload/pulumi-plugins/ && ls -la upload/pulumi-plugins/ - name: Configure AWS credentials - uses: aws-actions/configure-aws-credentials@v1 + uses: aws-actions/configure-aws-credentials@v2 if: github.ref == 'refs/heads/main' with: aws-region: ${{ secrets.AWS_REGION }}