Skip to content

Commit

Permalink
fix: Bump github action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
aphilippartd committed Oct 8, 2024
1 parent 212e2b4 commit b5b91b2
Showing 1 changed file with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}' }}
Expand Down Expand Up @@ -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 }}' }}
Expand Down Expand Up @@ -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 }}' }}
Expand All @@ -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 }}' }}
Expand All @@ -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
Expand All @@ -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 }}' }}
Expand Down Expand Up @@ -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 }}' }}
Expand Down

0 comments on commit b5b91b2

Please sign in to comment.