From 0958dd397616f92d2feda996a7f4bda03f2898cd Mon Sep 17 00:00:00 2001
From: Prateek Jain <prateekjain0495@gmail.com>
Date: Sun, 8 Jan 2023 19:13:49 +0530
Subject: [PATCH] Day 11: SCA Implementation with OWASP Dependency Check

---
 2023/day11.md | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/2023/day11.md b/2023/day11.md
index 08563ca..97a7c16 100644
--- a/2023/day11.md
+++ b/2023/day11.md
@@ -14,7 +14,7 @@ It is important to note that OWASP Dependency Check is not a replacement for sec
 
 ### Integrate Dependency Check with GitHub Actions
 
-To use Dependency Check with GitHub Actions, you can create a workflow file in your repository's **`.github/workflows`**directory. Here is an example workflow that runs Dependency Check on every push to the **`main`**branch:
+To use Dependency Check with GitHub Actions, you can create a workflow file in your repository's `.github/workflows` directory. Here is an example workflow that runs Dependency Check on every push to the `main` branch:
 
 ```yaml
 name: Dependency-Check
@@ -48,10 +48,10 @@ jobs:
 
 This workflow does the following:
 
-1. Defines a workflow called **`Dependency-Check`** that runs on every push to the **`main`** branch.
-2. Specifies that the workflow should run on the **`ubuntu-latest`** runner.
+1. Defines a workflow called `Dependency-Check` that runs on every push to the `main` branch.
+2. Specifies that the workflow should run on the `ubuntu-latest` runner.
 3. Downloads and installs Dependency Check.
-4. Runs Dependency Check on the current directory (**`.`**) and generate a report in report.html file.
+4. Runs Dependency Check on the current directory (`.`) and generate a report in report.html file.
 5. Removes the downloaded Dependency Check files.
 6. Upload the report file as artifacts.