build(deps): Bump org.jacoco:org.jacoco.core from 0.8.8 to 0.8.12 #70
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: On Branch Push (non-develop/release/main) | |
on: | |
push: | |
branches: | |
- "**" | |
- "!develop" | |
- "!release/**" | |
- "!main" | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
onPushJob: | |
name: Verify code base when pushed | |
runs-on: macos-latest | |
# runs-on: ubuntu-20.04-16core # Larger github runner, with KVM acceleration | |
steps: | |
- name: Run checkout github action | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # pin@v4 | |
with: | |
lfs: 'true' | |
fetch-depth: 0 | |
- name: Detect Arch | |
id: detect-arch | |
uses: ./config/actions/detect-arch | |
- name: Setup GitHub Runner workflow | |
uses: ./config/actions/setup-runner | |
- name: Lint script files | |
run: | | |
./.sh/lintProject.sh "" "runOwaspDependencyChecker" | |
shell: bash | |
- name: Bundle reports folder | |
uses: ./config/actions/bundle-reports | |
- name: Clean workspace | |
uses: ./config/actions/clean-workspace | |
- name: Verify Conventional commit standards against latest git tag | |
run: | | |
cog check | |
shell: bash |