Skip to content

Commit

Permalink
checking out .github updates
Browse files Browse the repository at this point in the history
  • Loading branch information
rwhorton66 committed May 24, 2024
1 parent 29969be commit 32ffed0
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 26 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,16 @@ jobs:
environment: 'demo'
steps:
- name: 'Checkout'
uses: 'actions/checkout@v3'
uses: 'actions/checkout@v4'

- name: 'Connecting to AWS using OIDC'
uses: 'aws-actions/configure-aws-credentials@v2'
uses: 'aws-actions/configure-aws-credentials@v4'
with:
role-to-assume: ${{ secrets.OIDC_ROLE_ARN }}
aws-region: ${{ env.AWS_REGION }}

- name: 'Connecting to ECR'
uses: 'aws-actions/amazon-ecr-login@v1'
uses: 'aws-actions/amazon-ecr-login@v2'
id: 'ecr-login'
with:
registries: ${{ env.AWS_ECR_REGISTRY_ID }}
Expand All @@ -47,10 +47,10 @@ jobs:
with:
image: '${{ steps.ecr-login.outputs.registry }}/hubzone-api'

- name: 'Install Terraform 1.0.9'
uses: 'hashicorp/setup-terraform@v2'
- name: 'Install Terraform 1.6.1'
uses: 'hashicorp/setup-terraform@v3'
with:
terraform_version: '1.0.9'
terraform_version: '1.6.1'

- name: 'Deploying Service'
uses: './.github/actions/terraform'
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: 'ubuntu-latest'
steps:
- name: 'Checkout'
uses: 'actions/checkout@v3'
uses: 'actions/checkout@v4'

# https://github.com/ruby/setup-ruby
- name: 'Configure Ruby'
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
--health-retries 5
steps:
- name: 'Checkout'
uses: 'actions/checkout@v3'
uses: 'actions/checkout@v4'

# https://github.com/ruby/setup-ruby
- name: 'Configure Ruby'
Expand All @@ -78,7 +78,7 @@ jobs:
runs-on: 'ubuntu-latest'
steps:
- name: 'Checkout'
uses: 'actions/checkout@v3'
uses: 'actions/checkout@v4'

- name: 'RSpec Docker Compose'
run: |
Expand All @@ -91,12 +91,12 @@ jobs:
runs-on: 'ubuntu-latest'
steps:
- name: 'Checkout'
uses: 'actions/checkout@v3'
uses: 'actions/checkout@v4'

- name: 'Install Terraform 1.0.9'
uses: 'hashicorp/setup-terraform@v2'
- name: 'Install Terraform 1.6.1'
uses: 'hashicorp/setup-terraform@v3'
with:
terraform_version: '1.0.9'
terraform_version: '1.6.1'

- name: 'Terraform Format'
run: |
Expand All @@ -121,7 +121,7 @@ jobs:
runs-on: 'ubuntu-latest'
steps:
- name: 'Checkout'
uses: 'actions/checkout@v3'
uses: 'actions/checkout@v4'

- name: 'Build'
run: |
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,16 @@ jobs:
environment: 'prod'
steps:
- name: 'Checkout'
uses: 'actions/checkout@v3'
uses: 'actions/checkout@v4'

- name: 'Connecting to AWS using OIDC'
uses: 'aws-actions/configure-aws-credentials@v2'
uses: 'aws-actions/configure-aws-credentials@v4'
with:
role-to-assume: ${{ secrets.OIDC_ROLE_ARN }}
aws-region: ${{ env.AWS_REGION }}

- name: 'Connecting to ECR'
uses: 'aws-actions/amazon-ecr-login@v1'
uses: 'aws-actions/amazon-ecr-login@v2'
id: 'ecr-login'
with:
registries: ${{ env.AWS_ECR_REGISTRY_ID }}
Expand All @@ -45,10 +45,10 @@ jobs:
with:
image: '${{ steps.ecr-login.outputs.registry }}/hubzone-api'

- name: 'Install Terraform 1.0.9'
uses: 'hashicorp/setup-terraform@v2'
- name: 'Install Terraform 1.6.1'
uses: 'hashicorp/setup-terraform@v3'
with:
terraform_version: '1.0.9'
terraform_version: '1.6.1'

- name: 'Deploying Service'
uses: './.github/actions/terraform'
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/stg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,16 @@ jobs:
environment: 'stg'
steps:
- name: 'Checkout'
uses: 'actions/checkout@v3'
uses: 'actions/checkout@v4'

- name: 'Connecting to AWS using OIDC'
uses: 'aws-actions/configure-aws-credentials@v2'
uses: 'aws-actions/configure-aws-credentials@v4'
with:
role-to-assume: ${{ secrets.OIDC_ROLE_ARN }}
aws-region: ${{ env.AWS_REGION }}

- name: 'Connecting to ECR'
uses: 'aws-actions/amazon-ecr-login@v1'
uses: 'aws-actions/amazon-ecr-login@v2'
id: 'ecr-login'
with:
registries: ${{ env.AWS_ECR_REGISTRY_ID }}
Expand All @@ -45,10 +45,10 @@ jobs:
with:
image: '${{ steps.ecr-login.outputs.registry }}/hubzone-api'

- name: 'Install Terraform 1.0.9'
uses: 'hashicorp/setup-terraform@v2'
- name: 'Install Terraform 1.6.1'
uses: 'hashicorp/setup-terraform@v3'
with:
terraform_version: '1.0.9'
terraform_version: '1.6.1'

- name: 'Deploying Service'
uses: './.github/actions/terraform'
Expand Down

0 comments on commit 32ffed0

Please sign in to comment.