Eduardo Valdes
Eduardo Valdes
**4.** Push existing branch state to remote: ``` console $ git push --set-upstream origin devsecops// ; Total 0 (delta 0), reused 0 (delta 0), pack-reused 0 (from 0) remote: remote:...
**5.** Create target container (filesystem folder) for the external/remote GitHub Action: ``` console $ cd .github/actions/ ; $ mkdir && cd $_ ; $ ls -al ; total 0 drwxr-xr-x...
**6.** Clone the external/remote repository GitHub Action: ``` console $ git clone https://github.com//.git . ; Cloning into '.'... remote: Enumerating objects: 143, done. remote: Counting objects: 100% (80/80), done. remote:...
**7.** Listing local repository file structure ``` console $ tree -a ; . ├── .git ... ├── .github │ ├── dependabot.yml │ └── workflows │ └── test_action.yml ├── README.md └──...
**8.** Listing local repository log: ``` console $ git log ; commit 806ce2fa215d520071c6d4faf8d2588a65e23749 (HEAD -> main, origin/main, origin/HEAD) Merge: abcb2c6 59444f8 Author: Date: Fri Aug 2 08:36:54 2024 -0400 Merge...
**9.** Checkout target hash-commit (referenced in the PRIME-ReportStream application): ``` console $ git checkout ebdf8c12c00912d18de93c483b935d51582f9236 ; Note: switching to 'ebdf8c12c00912d18de93c483b935d51582f9236'. You are in 'detached HEAD' state. You can look around,...
**10.** Listing GitHub Action (e.g.: action.yaml) change log: ``` console ((v1.5)) $ git log -p ./action.yml ; commit 20fe3f0b1e20bf44f7c1c0dde8b7e6798ac123e7 Author: dependabot[bot] Date: Fri Feb 16 14:57:08 2024 +0000 Bump actions/download-artifact...
**11.** Purge non-usable components (e.g.: .git and .github folders) ``` console $ rm -rf .git .github ; $ ls -al ; total 16 drwxr-xr-x 4 staff 128 Dec 5 15:00...
**12.** Modify all the configuration files that are needed/required to be updated: ``` console $ git status ; On branch devsecops// Your branch is up to date with 'origin/devsecops//'. Changes...
**13 .** Modify the dependabot.yaml file and review its changes: ``` console $ git log -p ./dependabot.yml ; commit fba4665dd899767e4ea4da2c6cc5418bef835037 Author: Eduardo Valdes Date: Thu Dec 5 15:06:13 2024 -0700...