Skip to content

Commit 44b609d

Browse files
committed
docs: update docs with major version tag
1 parent e84897b commit 44b609d

39 files changed

Lines changed: 118 additions & 82 deletions

.github/workflows/release-major-tag.yml renamed to .github/workflows/release-maintain-major-tag.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
name: Update Major Tag
2+
name: Release - Maintain Major Tag
33

44
on:
55
release:

docs/aws-prowler.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ permissions:
1919
jobs:
2020
aws-assessment:
2121
name: Run prowler security
22-
uses: clouddrove-sandbox/test-shared-workflow/.github/workflows/prowler.yml@2.0.0
22+
uses: clouddrove-sandbox/test-shared-workflow/.github/workflows/prowler.yml@v2
2323
with:
2424
cloud_provider: 'aws'
2525
aws_region: ## aws region

docs/aws-remote-ssh-command.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ on:
2222

2323
jobs:
2424
ssh-commands:
25-
uses: clouddrove/github-shared-workflows/.github/workflows/RemoteSSHCommand.yml@2.0.0
25+
uses: clouddrove/github-shared-workflows/.github/workflows/RemoteSSHCommand.yml@v2
2626
with:
2727
port: # your_ssh_port
2828
timeout: # your_timeout_in_seconds

docs/aws-ssm-send-command.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ on:
2828

2929
jobs:
3030
bash-commands-without-ssh:
31-
uses: clouddrove/github-shared-workflows/.github/workflows/aws-ssm-send-command.yml@2.0.0
31+
uses: clouddrove/github-shared-workflows/.github/workflows/aws-ssm-send-command.yml@v2
3232
with:
3333
working-directory: # Specify the working directory for the job
3434
slack_message: # Message to be sent to Slack

docs/cf-deploy-stackset.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ permissions:
3030

3131
jobs:
3232
deploy-cf-stackset:
33-
uses: clouddrove/github-shared-workflows/.github/workflows/cf-deploy-stackset.yml@2.0.0
33+
uses: clouddrove/github-shared-workflows/.github/workflows/cf-deploy-stackset.yml@v2
3434
with:
3535
aws-region: # aws-configure region add, where you need stackset
3636
stackset-instance-region: # region add where you need stacks

docs/cf-deploy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ on:
1717
workflow_dispatch:
1818
jobs:
1919
cloudformation-stack-deploy:
20-
uses: clouddrove/github-shared-workflows/.github/workflows/cf-deploy.yml@2.0.0
20+
uses: clouddrove/github-shared-workflows/.github/workflows/cf-deploy.yml@v2
2121
with:
2222
s3-bucket: # S3 Bucket name where code is stored
2323
bucket-prefix: # S3 Bucket prefix/folder name where you push the zip file

docs/cloudrun-rollback.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ on:
4040

4141
jobs:
4242
deploy-backend:
43-
uses: clouddrove/github-shared-workflows/.github/workflows/cloudrun-rollback.yml@2.0.0
43+
uses: clouddrove/github-shared-workflows/.github/workflows/cloudrun-rollback.yml@v2
4444
with:
4545
gcp_registry_host: # GCP Artifact Registry host
4646
IMAGE_NAME: # Docker image name

docs/docker-build-push.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ on:
2323

2424
jobs:
2525
docker-scanner:
26-
uses: clouddrove/github-shared-workflows/.github/workflows/docker-scanner.yml@2.0.0
26+
uses: clouddrove/github-shared-workflows/.github/workflows/docker-scanner.yml@v2
2727
with:
2828
severity: # which vulnerability should disable the workflow before pusing image to registry. eg. 'HIGH,CRITICAL,MEDIUM,LOW'
2929

3030
docker-push:
3131
needs: docker-scanner
3232
if: ${{ success() && needs.docker-scanner.result == 'success' }} # This condition start this docker push workflow on succesfull scanning of docker image
33-
uses: clouddrove/github-shared-workflows/.github/workflows/docker-build-push.yml@2.0.0
33+
uses: clouddrove/github-shared-workflows/.github/workflows/docker-build-push.yml@v2
3434
secrets:
3535
DOCKERHUB_USERNAME: # Dockerhub username
3636
DOCKERHUB_PASSWORD: # Dockerhub password
@@ -56,14 +56,14 @@ on:
5656

5757
jobs:
5858
docker-scanner:
59-
uses: clouddrove/github-shared-workflows/.github/workflows/docker-scanner.yml@master
59+
uses: clouddrove/github-shared-workflows/.github/workflows/docker-scanner.yml@v2
6060
with:
6161
severity: # which vulnerability should disable the workflow before pusing image to registry. eg. 'HIGH,CRITICAL,MEDIUM,LOW'
6262

6363
docker-push:
6464
needs: docker-scanner
6565
if: ${{ success() && needs.docker-scanner.result == 'success' }} # This condition start this docker push workflow on succesfull scanning of docker image
66-
uses: clouddrove/github-shared-workflows/.github/workflows/docker-build-push.yml@master
66+
uses: clouddrove/github-shared-workflows/.github/workflows/docker-build-push.yml@v2
6767
secrets:
6868
AWS_ACCESS_KEY_ID: # AWS Access Key ID
6969
AWS_SECRET_ACCESS_KEY: # AWS Secret Access Key ID

docs/docker-scout.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ on:
2121

2222
jobs:
2323
docker-scout:
24-
uses: clouddrove/github-shared-workflows/.github/workflows/docker-scout.yml@2.0.0
24+
uses: clouddrove/github-shared-workflows/.github/workflows/docker-scout.yml@v2
2525
with:
2626
IMAGES: # Specify the dockerhub repository name
2727
IMAGE_TAG: # Give the tag to the latest image you want to build

docs/docker-smurf-helm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313

1414
jobs:
1515
dev:
16-
uses: clouddrove/github-shared-workflows/.github/workflows/docker-smurf-helm.yml@2.0.0
16+
uses: clouddrove/github-shared-workflows/.github/workflows/docker-smurf-helm.yml@v2
1717
with:
1818
docker_image_name: # Image Name
1919
docker_image_tag: # Image Tag

0 commit comments

Comments
 (0)