Skip to content

Commit 2714ce8

Browse files
committed
resolve conflicts
2 parents 75ed895 + 3e440ea commit 2714ce8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+1133
-444
lines changed

.github/workflows/AWSSSMSendCommand.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
runs-on: ubuntu-latest
5757

5858
steps:
59-
- uses: actions/checkout@v2
59+
- uses: actions/checkout@v5
6060

6161
- name: Execute Remote Command via AWS SSM
6262
uses: peterkimzz/aws-ssm-send-command@master

.github/workflows/RemoteSSHCommand.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
name: "remote ssh command"
2+
name: "🔐 Remote SSH Command"
33
on:
44
workflow_call:
55
inputs:
@@ -82,10 +82,10 @@ jobs:
8282
runs-on: ubuntu-latest
8383

8484
steps:
85-
- name: Checkout git repo
86-
uses: actions/checkout@v4
85+
- name: 📦 Checkout git repo
86+
uses: actions/checkout@v5
8787

88-
- name: executing remote ssh commands using ssh key
88+
- name: 🔐 Executing remote SSH commands using SSH key
8989
uses: appleboy/[email protected]
9090
with:
9191
host: ${{ secrets.HOST }}
@@ -97,7 +97,7 @@ jobs:
9797
script: |
9898
${{ inputs.script }}
9999
100-
- name: slack notification
100+
- name: 📣 Slack notification
101101
if: ${{ inputs.slack-notification == 'true' && always() }}
102102
uses: rtCamp/action-slack-notify@v2
103103
env:

.github/workflows/cf-lint.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ jobs:
1313
runs-on: ubuntu-latest
1414

1515
steps:
16-
- name: Checkout
17-
uses: actions/checkout@v4
16+
- name: 📦 Checkout
17+
uses: actions/checkout@v5
1818

19-
- name: cfn-lint-action
19+
- name: 🧪 cfn-lint-action
2020
uses: ScottBrenner/cfn-lint-action@v2
2121
with:
2222
command: cfn-lint -t ${{ inputs.cf_file_path }}
2323

24-
- name: cfn security checks
24+
- name: 🔒 cfn security checks
2525
uses: minchao/[email protected]
2626
with:
2727
args: '--input-path ${{ inputs.cf_file_path }}'

.github/workflows/changelog.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ jobs:
1717
runs-on: ubuntu-latest
1818

1919
steps:
20-
- name: Checkout Code
21-
uses: actions/checkout@v4
20+
- name: 📦 Checkout Code
21+
uses: actions/checkout@v5
2222
with:
2323
token: ${{ secrets.GITHUB }}
2424

25-
- name: Update CHANGELOG
25+
- name: 📝 Update CHANGELOG
2626
id: changelog
2727
uses: requarks/changelog-action@v1
2828
with:
@@ -31,7 +31,7 @@ jobs:
3131
includeInvalidCommits: false
3232
tag: ${{ github.ref_name }}
3333

34-
- name: Create Release
34+
- name: 🚀 Create Release
3535
uses: ncipollo/[email protected]
3636
with:
3737
allowUpdates: true
@@ -42,7 +42,7 @@ jobs:
4242
body: ${{ steps.changelog.outputs.changes }}
4343
token: '${{ secrets.GITHUB }}'
4444

45-
- name: Commit CHANGELOG.md
45+
- name: Commit CHANGELOG.md
4646
uses: stefanzweifel/git-auto-commit-action@v6
4747
with:
4848
branch: ${{ inputs.branch}}

.github/workflows/checkov.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,13 @@ jobs:
3838
runs-on: ubuntu-latest
3939

4040
steps:
41-
- name: Checkout
42-
uses: actions/checkout@v4
41+
- name: 📦 Checkout
42+
uses: actions/checkout@v5
4343

44-
- name: Cleanup Old SARIF
44+
- name: 🧹 Cleanup Old SARIF
4545
run: rm -f results.sarif || true
4646

47-
- name: Run Checkov (Docker-based)
47+
- name: 🛡️ Run Checkov (Docker-based)
4848
id: checkov
4949
continue-on-error: true
5050
uses: bridgecrewio/checkov-action@v12
@@ -58,21 +58,21 @@ jobs:
5858
output_format: ${{ inputs.output_format }}
5959
output_file_path: ${{ inputs.output_file_path }}
6060

61-
- name: Upload SARIF to GitHub Security
61+
- name: 📤 Upload SARIF to GitHub Security
6262
if: always() && !cancelled()
6363
uses: github/codeql-action/upload-sarif@v3
6464
with:
6565
sarif_file: results.sarif
6666
category: checkov
6767

68-
- name: Comment on PR with Checkov results
68+
- name: 💬 Comment on PR with Checkov results
6969
if: github.event_name == 'pull_request'
7070
uses: clouddrove/[email protected]
7171
with:
7272
github_token: ${{ secrets.GITHUB_TOKEN }}
7373
sarif_file: results.sarif
7474

75-
- name: Fail if Issues Found
75+
- name: Fail if Issues Found
7676
if: always() && github.event_name == 'pull_request'
7777
run: |
7878
ISSUE_COUNT=$(jq '.runs[0].results | length' results.sarif)

.github/workflows/deploy-cloudformation-stackset.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,10 @@ jobs:
7474
deploy-cf-stackset:
7575
runs-on: ubuntu-latest
7676
steps:
77-
- name: Checkout code from master branch
78-
uses: actions/checkout@v4
77+
- name: 📦 Checkout code from master branch
78+
uses: actions/checkout@v5
7979

80-
- name: Configure AWS Credentials
80+
- name: 🔐 Configure AWS Credentials
8181
uses: aws-actions/configure-aws-credentials@v4
8282
with:
8383
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID}}
@@ -86,7 +86,7 @@ jobs:
8686
aws-region: ${{ inputs.aws-region }}
8787
role-to-assume: ${{ secrets.AWS_ROLE_TO_ASSUME }}
8888

89-
- name: Check if StackSet exists or not-exist then create/update stack-set
89+
- name: 🔄 Check if StackSet exists or not-exist then create/update stack-set
9090
id: check-stackset
9191
run: |
9292
set +e
@@ -147,7 +147,7 @@ jobs:
147147
sleep 50s
148148
fi
149149
150-
- name: Create or Update StackSet-instance
150+
- name: 🧱 Create or Update StackSet-instance
151151
run: |
152152
stack_instance_list=$(aws cloudformation list-stack-instances --region ${{ inputs.aws-region }} --stack-set-name ${{ inputs.stack-set-name }})
153153
if [ "${{ inputs.permission-model }}" == "SERVICE_MANAGED" ]; then

.github/workflows/deploy-cloudformation.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -80,18 +80,18 @@ jobs:
8080
runs-on: ubuntu-latest
8181

8282
steps:
83-
- name: Checkout code from master branch
84-
uses: actions/checkout@v4
83+
- name: 📦 Checkout code from master branch
84+
uses: actions/checkout@v5
8585

86-
- name: Checkout code from another Repo
87-
uses: actions/checkout@v4
86+
- name: 📥 Checkout code from another Repo
87+
uses: actions/checkout@v5
8888
with:
8989
repository: ${{ inputs.organization-name }}/${{ inputs.GitHub-repo-name }}
9090
ref: ${{ inputs.GitHub-branch }}
9191
token: ${{ secrets.GITHUB }}
9292
path: ${{ inputs.GitHub-repo-name }}
9393

94-
- name: Configure AWS Credentials
94+
- name: 🔐 Configure AWS Credentials
9595
uses: aws-actions/configure-aws-credentials@v4
9696
with:
9797
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID}}
@@ -100,14 +100,14 @@ jobs:
100100
aws-region: ${{ inputs.aws-region }}
101101
role-to-assume: ${{ inputs.ROLE-TO-ASSUME }}
102102

103-
- name: Src folder code convert into zip and upload to S3
103+
- name: 📦 Src folder code convert into zip and upload to S3
104104
run: |
105105
cd ${{ inputs.GitHub-repo-name }}/${{ inputs.code-folder }}
106106
find . -maxdepth 1 -type f -exec zip ${{inputs.zip-file-name}} {} +
107107
run: |
108108
aws s3 cp ${{inputs.zip-file-name}} s3://${{ inputs.s3-bucket }}/${{ inputs.bucket-prefix }}/
109109
110-
- name: Deploy cloudformation stack using template
110+
- name: 🚀 Deploy cloudformation stack using template
111111
uses: aws-actions/aws-cloudformation-github-deploy@v1
112112
with:
113113
name: ${{ inputs.stack-name }}

.github/workflows/docker-scanner.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
name: docker-scanner
2+
name: 🐳 docker-scanner
33

44
on:
55
workflow_call:
@@ -23,21 +23,21 @@ on:
2323

2424
jobs:
2525
build-image:
26-
name: Build Images
26+
name: 🔧 Build Images
2727
runs-on: ubuntu-latest
2828

2929
steps:
3030

31-
- name: Checkout git repo
32-
uses: actions/checkout@v4
31+
- name: 📥 Checkout git repo
32+
uses: actions/checkout@v5
3333

34-
- name: Set up QEMU
34+
- name: 🛠️ Set up QEMU
3535
uses: docker/setup-qemu-action@v3
3636

37-
- name: Set up Docker Buildx
37+
- name: 🛠️ Set up Docker Buildx
3838
uses: docker/[email protected]
3939

40-
- name: Build and export to Docker
40+
- name: 🏗️ Build and export to Docker
4141
id: build-id
4242
uses: docker/build-push-action@v6
4343
with:
@@ -47,7 +47,7 @@ jobs:
4747
platforms: linux/amd64
4848
file: ${{inputs.dockerfile-path}}
4949

50-
- name: Docker Scan with trivy (non-blocking)
50+
- name: 🔍 Docker Scan with trivy (non-blocking)
5151
uses: aquasecurity/trivy-action@master
5252
env:
5353
tags: ${{ github.sha }}
@@ -57,13 +57,13 @@ jobs:
5757
format: 'sarif'
5858
output: 'trivy-results.sarif'
5959

60-
- name: Upload Trivy scan results to GitHub Security tab
60+
- name: ☁️ Upload Trivy scan results to GitHub Security tab
6161
if: ${{ inputs.security-upload == 'true' }}
6262
uses: github/codeql-action/upload-sarif@v3
6363
with:
6464
sarif_file: 'trivy-results.sarif'
6565

66-
- name: Docker Scan with trivy (blocking)
66+
- name: 🚨 Docker Scan with trivy (blocking)
6767
if: ${{ inputs.block_action == true }}
6868
uses: aquasecurity/trivy-action@master
6969
with:

.github/workflows/docker-scout.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
2-
name: docker-scout
2+
name: 🔍 docker-scout
3+
34
on:
45
workflow_call:
56
inputs:
@@ -48,30 +49,30 @@ jobs:
4849
runs-on: ubuntu-latest
4950

5051
steps:
51-
- name: Checkout git repo
52-
uses: actions/checkout@v4
52+
- name: 📥 Checkout git repo
53+
uses: actions/checkout@v5
5354

54-
- name: Setup Docker buildx
55+
- name: ⚙️ Setup Docker buildx
5556
uses: docker/[email protected]
5657
with:
5758
driver-opts: |
5859
image=moby/buildkit:v0.10.6
5960
60-
- name: Login to Docker Hub
61+
- name: 🔐 Login to Docker Hub
6162
uses: docker/login-action@v3
6263
with:
6364
username: ${{ secrets.DOCKERHUB_USERNAME }}
6465
password: ${{ secrets.DOCKERHUB_PASSWORD }}
6566

66-
- name: Build docker image
67+
- name: 🛠️ Build docker image
6768
env:
6869
IMAGE_TAG: ${{ inputs.IMAGE_TAG }}
6970
images: ${{ inputs.IMAGES }}
7071
run: |
7172
docker build -t $images:$IMAGE_TAG .
7273
# docker push $images:$IMAGE_TAG
7374
74-
- name: Docker Scout
75+
- name: 🕵️ Docker Scout
7576
id: docker-scout
7677
uses: docker/scout-action@v1
7778
with:

.github/workflows/docker.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
name: docker-build-push
2+
name: 🐳 docker-build-push
33

44
on:
55
workflow_call:
@@ -51,22 +51,22 @@ on:
5151

5252
jobs:
5353
build-image:
54-
name: Build Images
54+
name: 🏗️ Build Images
5555
runs-on: ubuntu-latest
5656

5757
steps:
5858

59-
- name: Checkout git repo
60-
uses: actions/checkout@v4
59+
- name: 📦 Checkout git repo
60+
uses: actions/checkout@v5
6161

62-
- name: Login to Docker Hub
62+
- name: 🔑 Login to Docker Hub
6363
if: ${{ inputs.provider == 'DOCKERHUB' }}
6464
uses: docker/login-action@v3
6565
with:
6666
username: ${{ secrets.DOCKERHUB_USERNAME }}
6767
password: ${{ secrets.DOCKERHUB_PASSWORD }}
6868

69-
- name: Push docker image to DOCKERHUB
69+
- name: 🚀 Push docker image to DOCKERHUB
7070
if: ${{ inputs.provider == 'DOCKERHUB' }}
7171
env:
7272
IMAGE_TAG: ${{ inputs.IMAGE_TAG }}
@@ -76,7 +76,7 @@ jobs:
7676
docker build -t $images:$IMAGE_TAG $BUILD_PATH
7777
docker push $images:$IMAGE_TAG
7878
79-
- name: Configure AWS credentials
79+
- name: 🔧 Configure AWS credentials
8080
if: ${{ inputs.provider == 'aws' }}
8181
uses: aws-actions/configure-aws-credentials@v4
8282
with:
@@ -88,18 +88,18 @@ jobs:
8888
role-duration-seconds: ${{ inputs.role-duration-seconds }}
8989
role-skip-session-tagging: true
9090

91-
- name: Verify awscli
91+
- name: 🕵️ Verify awscli
9292
if: ${{ inputs.provider == 'aws' }}
9393
run: |
9494
aws sts get-caller-identity
9595
9696
97-
- name: Login to Amazon ECR
97+
- name: 🔑 Login to Amazon ECR
9898
if: ${{ inputs.provider == 'aws' }}
9999
id: login-ecr
100100
uses: aws-actions/amazon-ecr-login@v2
101101

102-
- name: Push docker image to Amazon ECR
102+
- name: 🚢 Push docker image to Amazon ECR
103103
if: ${{ inputs.provider == 'aws' }}
104104
id: docker-build
105105
env:
@@ -112,7 +112,7 @@ jobs:
112112
docker build -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG $BUILD_PATH
113113
docker push $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG
114114
115-
- name: Push docker image to Amazon ECR and DOCKERHUB
115+
- name: 🚀🚢 Push docker image to Amazon ECR and DOCKERHUB
116116
if: ${{ inputs.provider == 'DOCKERHUB,aws' }}
117117
env:
118118
## For ECR env variable

0 commit comments

Comments
 (0)