Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: filipeforattini/ff-iac-github-actions
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.10.2
Choose a base ref
...
head repository: filipeforattini/ff-iac-github-actions
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.11.0
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on May 10, 2022

  1. feat: added gitleaks

    Filipe Forattini committed May 10, 2022

    Verified

    This commit was signed with the committer’s verified signature.
    rouault Even Rouault
    Copy the full SHA
    b1033c9 View commit details
  2. chore(release): 1.11.0 [skip ci]

    # [1.11.0](v1.10.2...v1.11.0) (2022-05-10)
    
    ### Features
    
    * added gitleaks ([b1033c9](b1033c9))
    semantic-release-bot committed May 10, 2022
    Copy the full SHA
    60bfc74 View commit details
Showing with 27 additions and 2 deletions.
  1. +20 −2 .github/workflows/service-push.yml
  2. +7 −0 CHANGELOG.md
22 changes: 20 additions & 2 deletions .github/workflows/service-push.yml
Original file line number Diff line number Diff line change
@@ -95,6 +95,25 @@ jobs:
PIPELINE_SETUP: ${{ steps.script_setup.outputs.result}}
run: echo $PIPELINE_SETUP

#--------------------------------------------------#
# Base Analysis #
#--------------------------------------------------#
Base-Analysis:
runs-on: ubuntu-latest
needs: Setup

permissions:
security-events: write

steps:

# pre-job
- name: Setup | Cloning repository
uses: actions/checkout@v3

#job
- name: Run gitleaks
uses: zricethezav/gitleaks-action@master

#--------------------------------------------------#
# Analysis: Node #
@@ -119,13 +138,12 @@ jobs:
with:
languages: javascript

- name: Perform CodeQL Analysis
- name: Run CodeQL Analysis
uses: github/codeql-action/analyze@v2

# - name: Upload SARIF file
# uses: github/codeql-action/upload-sarif@v1


#--------------------------------------------------#
# Analysis: Python #
#--------------------------------------------------#
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# [1.11.0](https://github.com/filipeforattini/ff-iac-github-actions/compare/v1.10.2...v1.11.0) (2022-05-10)


### Features

* added gitleaks ([b1033c9](https://github.com/filipeforattini/ff-iac-github-actions/commit/b1033c97d2730a1a540af225bc555bfa4435a4f6))

## [1.10.2](https://github.com/filipeforattini/ff-iac-github-actions/compare/v1.10.1...v1.10.2) (2022-05-09)