Skip to content

Commit

Permalink
fix: bump custom actions to 2.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Xavier Basty committed Aug 23, 2023
1 parent df5903d commit 59ea1ed
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dispatch_publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,15 +60,15 @@ jobs:
- run: echo "Version = ${{ needs.update_version.outputs.version }}"

publish_image-staging:
name: Publish Image - ${{ needs.get_version.outputs.version }} ❱❱ Staging ECR
name: Publish Image - ${{ needs.update_version.outputs.version }} ❱❱ Staging ECR
uses: ./.github/workflows/sub-publish-image.yml
needs: [ update_version ]
with:
version: ${{ needs.update_version.outputs.version }}
aws-role-arn: ${{ vars.AWS_ROLE_STAGING }}

publish_image-prod:
name: Publish Image - ${{ needs.get_version.outputs.version }} ❱❱ Prod ECR
name: Publish Image - ${{ needs.update_version.outputs.version }} ❱❱ Prod ECR
uses: ./.github/workflows/sub-publish-image.yml
needs: [ update_version ]
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sub-app-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:

- name: Deploy image to ECS
id: deploy
uses: WalletConnect/actions/aws/ecs/deploy-image/@2.1.3
uses: WalletConnect/actions/aws/ecs/deploy-image/@2.1.4
with:
aws-role-arn: ${{ inputs.aws-role-arn }}
aws-region: ${{ env.AWS_REGION }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sub-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
url: https://${{ vars.SUBDOMAIN_NAME }}.walletconnect.com/health
steps:
- id: decide
uses: WalletConnect/actions/deploy-window/@2.1.3
uses: WalletConnect/actions/deploy-window/@2.1.4
with:
earliest-hour: "9"
latest-hour: "17"
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/sub-infra-apply.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,13 @@ jobs:

- name: Get Grafana details
id: grafana-get-details
uses: WalletConnect/actions/aws/grafana/get-details-by-name/@2.1.3
uses: WalletConnect/actions/aws/grafana/get-details-by-name/@2.1.4
with:
workspace-name: 'Main'

- name: Get Grafana key
id: grafana-get-key
uses: WalletConnect/actions/aws/grafana/get-key/@2.1.3
uses: WalletConnect/actions/aws/grafana/get-key/@2.1.4
with:
key-prefix: ${{ github.event.repository.name }}
workspace-id: ${{ steps.grafana-get-details.outputs.workspace-id }}
Expand All @@ -70,7 +70,7 @@ jobs:
key: terraform-${{ hashFiles('${{ vars.TF_DIRECTORY }}/.terraform.lock.hcl') }}

- name: Init Terraform
uses: WalletConnect/actions/terraform/init/@2.1.3
uses: WalletConnect/actions/terraform/init/@2.1.4
with:
environment: ${{ inputs.stage }}
use-tfvars: false
Expand All @@ -91,7 +91,7 @@ jobs:
- name: Delete Grafana key
id: grafana-delete-key
if: ${{ always() }}
uses: WalletConnect/actions/aws/grafana/delete-key/@2.1.3
uses: WalletConnect/actions/aws/grafana/delete-key/@2.1.4
with:
key-name: ${{ steps.grafana-get-key.outputs.key-name }}
workspace-id: ${{ steps.grafana-get-details.outputs.workspace-id }}
10 changes: 5 additions & 5 deletions .github/workflows/sub-infra-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
cli_config_credentials_token: ${{ secrets.TF_API_TOKEN }}

- name: Check Formatting
uses: WalletConnect/actions/terraform/check-fmt/@2.1.3
uses: WalletConnect/actions/terraform/check-fmt/@2.1.4
with:
terraform-path: ${{ vars.TF_DIRECTORY }}

Expand All @@ -57,14 +57,14 @@ jobs:
key: terraform-${{ hashFiles('${{ vars.TF_DIRECTORY }}/.terraform.lock.hcl') }}

- name: Init Terraform
uses: WalletConnect/actions/terraform/init/@2.1.3
uses: WalletConnect/actions/terraform/init/@2.1.4
with:
environment: ${{ inputs.stage }}
use-tfvars: false

- name: Validate Terraform
id: tf-fmt
uses: WalletConnect/actions/terraform/validate/@2.1.3
uses: WalletConnect/actions/terraform/validate/@2.1.4
with:
terraform-path: ${{ vars.TF_DIRECTORY }}

Expand All @@ -90,7 +90,7 @@ jobs:
key: terraform-${{ hashFiles('${{ vars.TF_DIRECTORY }}/.terraform.lock.hcl') }}

- name: Init Terraform
uses: WalletConnect/actions/terraform/init/@2.1.3
uses: WalletConnect/actions/terraform/init/@2.1.4
with:
environment: ${{ inputs.stage }}
use-tfvars: false
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
key: terraform-${{ hashFiles('${{ vars.TF_DIRECTORY }}/.terraform.lock.hcl') }}

- name: Init Terraform
uses: WalletConnect/actions/terraform/init/@2.1.3
uses: WalletConnect/actions/terraform/init/@2.1.4
with:
environment: ${{ inputs.stage }}
use-tfvars: false
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/sub-infra-plan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,13 @@ jobs:

- name: Get Grafana details
id: grafana-get-details
uses: WalletConnect/actions/aws/grafana/get-details-by-name/@2.1.3
uses: WalletConnect/actions/aws/grafana/get-details-by-name/@2.1.4
with:
workspace-name: 'Main'

- name: Get Grafana key
id: grafana-get-key
uses: WalletConnect/actions/aws/grafana/get-key/@2.1.3
uses: WalletConnect/actions/aws/grafana/get-key/@2.1.4
with:
key-prefix: ${{ github.event.repository.name }}
workspace-id: ${{ steps.grafana-get-details.outputs.workspace-id }}
Expand All @@ -75,7 +75,7 @@ jobs:
key: terraform-${{ hashFiles('${{ vars.TF_DIRECTORY }}/.terraform.lock.hcl') }}

- name: Init Terraform
uses: WalletConnect/actions/terraform/init/@2.1.3
uses: WalletConnect/actions/terraform/init/@2.1.4
with:
environment: ${{ inputs.stage }}
use-tfvars: false
Expand All @@ -94,7 +94,7 @@ jobs:
- name: Delete Grafana key
id: grafana-delete-key
if: ${{ always() }}
uses: WalletConnect/actions/aws/grafana/delete-key/@2.1.3
uses: WalletConnect/actions/aws/grafana/delete-key/@2.1.4
with:
key-name: ${{ steps.grafana-get-key.outputs.key-name }}
workspace-id: ${{ steps.grafana-get-details.outputs.workspace-id }}

0 comments on commit 59ea1ed

Please sign in to comment.