From b5b91b216420f0c9a8753dab061b503f3ae9caf0 Mon Sep 17 00:00:00 2001 From: Alexis Philippart de Foy Date: Tue, 8 Oct 2024 11:15:13 +0400 Subject: [PATCH] fix: Bump github action versions --- .../.github/workflows/pipeline.yaml | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/GitHub-Actions/two-stage-pipeline-template/{{cookiecutter.outputDir}}/.github/workflows/pipeline.yaml b/GitHub-Actions/two-stage-pipeline-template/{{cookiecutter.outputDir}}/.github/workflows/pipeline.yaml index 97a9172..9dc3e8f 100644 --- a/GitHub-Actions/two-stage-pipeline-template/{{cookiecutter.outputDir}}/.github/workflows/pipeline.yaml +++ b/GitHub-Actions/two-stage-pipeline-template/{{cookiecutter.outputDir}}/.github/workflows/pipeline.yaml @@ -68,7 +68,7 @@ jobs: use-installer: true - name: Assume the testing pipeline user role - uses: aws-actions/configure-aws-credentials@v1-node16 + uses: aws-actions/configure-aws-credentials@v4 with: {% if cookiecutter.permissions_provider == "AWS IAM" -%} aws-access-key-id: {{ '${{ env.PIPELINE_USER_ACCESS_KEY_ID }}' }} @@ -105,7 +105,7 @@ jobs: - run: sam build --template ${SAM_TEMPLATE} --use-container - name: Assume the testing pipeline user role - uses: aws-actions/configure-aws-credentials@v1-node16 + uses: aws-actions/configure-aws-credentials@v4 with: {% if cookiecutter.permissions_provider == "AWS IAM" -%} aws-access-key-id: {{ '${{ env.PIPELINE_USER_ACCESS_KEY_ID }}' }} @@ -144,7 +144,7 @@ jobs: run: sam build --template ${SAM_TEMPLATE} --use-container - name: Assume the testing pipeline user role - uses: aws-actions/configure-aws-credentials@v1-node16 + uses: aws-actions/configure-aws-credentials@v4 with: {% if cookiecutter.permissions_provider == "AWS IAM" -%} aws-access-key-id: {{ '${{ env.PIPELINE_USER_ACCESS_KEY_ID }}' }} @@ -166,13 +166,13 @@ jobs: --region ${TESTING_REGION} \ --output-template-file packaged-testing.yaml - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: packaged-testing.yaml path: packaged-testing.yaml - name: Assume the prod pipeline user role - uses: aws-actions/configure-aws-credentials@v1-node16 + uses: aws-actions/configure-aws-credentials@v4 with: {% if cookiecutter.permissions_provider == "AWS IAM" -%} aws-access-key-id: {{ '${{ env.PIPELINE_USER_ACCESS_KEY_ID }}' }} @@ -194,7 +194,7 @@ jobs: --region ${PROD_REGION} \ --output-template-file packaged-prod.yaml - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: packaged-prod.yaml path: packaged-prod.yaml @@ -208,12 +208,12 @@ jobs: - uses: aws-actions/setup-sam@v2 with: use-installer: true - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: packaged-testing.yaml - name: Assume the testing pipeline user role - uses: aws-actions/configure-aws-credentials@v1-node16 + uses: aws-actions/configure-aws-credentials@v4 with: {% if cookiecutter.permissions_provider == "AWS IAM" -%} aws-access-key-id: {{ '${{ env.PIPELINE_USER_ACCESS_KEY_ID }}' }} @@ -259,12 +259,12 @@ jobs: - uses: aws-actions/setup-sam@v2 with: use-installer: true - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: packaged-prod.yaml - name: Assume the prod pipeline user role - uses: aws-actions/configure-aws-credentials@v1-node16 + uses: aws-actions/configure-aws-credentials@v4 with: {% if cookiecutter.permissions_provider == "AWS IAM" -%} aws-access-key-id: {{ '${{ env.PIPELINE_USER_ACCESS_KEY_ID }}' }}