Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
steps:
# 1. Checkout Code from GitHub
- name: Checkout Code
uses: actions/checkout@v4
uses: actions/checkout@v6

# 2. Set up Python environment and install dependencies
- name: Set up Python 3.x
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
steps:
# 1. Checkout Code from GitHub
- name: Checkout Code
uses: actions/checkout@v4
uses: actions/checkout@v6
# 6. Set up SSH key and establish SSH Tunnel
- name: Set up SSH tunnel and deploy code
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

# Checkout code from the repository
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6

# Set up Docker Buildx (required for multi-platform builds)
- name: Set up Docker Buildx
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/elk.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
steps:
# 1. Checkout Code from GitHub
- name: Checkout Code
uses: actions/checkout@v4
uses: actions/checkout@v6
# 6. Set up SSH key and establish SSH Tunnel
- name: Set up SSH tunnel and deploy code
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/infra.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
if: github.event_name == 'push' || github.event.inputs.action == 'apply'
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Setup Terraform
uses: hashicorp/setup-terraform@v3
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
if: github.event_name == 'workflow_dispatch' && github.event.inputs.action == 'destroy'
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Setup Terraform
uses: hashicorp/setup-terraform@v3
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/ochestrator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Setup Terraform
uses: hashicorp/setup-terraform@v3
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
steps:
# 1. Checkout Code from GitHub
- name: Checkout Code
uses: actions/checkout@v4
uses: actions/checkout@v6

# 2. Set up Python environment and install dependencies
- name: Set up Python 3.x
Expand Down Expand Up @@ -142,7 +142,7 @@ jobs:
steps:
#1. Checkout code from the repository
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6

#2. Set up Docker Buildx (required for multi-platform builds)
- name: Set up Docker Buildx
Expand Down Expand Up @@ -196,7 +196,7 @@ jobs:
steps:
# 1. Checkout Code from GitHub
- name: Checkout Code
uses: actions/checkout@v4
uses: actions/checkout@v6

# 2. Download tf outputs
- name: Download Terraform outputs from S3
Expand Down Expand Up @@ -261,7 +261,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Download Terraform outputs from S3
env:
Expand Down Expand Up @@ -325,7 +325,7 @@ jobs:
elk_ip: ${{ steps.parse-outputs.outputs.elk_ip }}
steps:
- name: Checkout Code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Download Terraform outputs from S3
env:
Expand Down Expand Up @@ -390,7 +390,7 @@ jobs:
elk_ip: ${{ steps.parse-outputs.outputs.elk_ip }}
steps:
- name: Checkout Code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Download Terraform outputs from S3
env:
Expand Down Expand Up @@ -460,7 +460,7 @@ jobs:
if: github.event.inputs.action == 'destroy'
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Setup Terraform
uses: hashicorp/setup-terraform@v3
Expand Down
Loading