Skip to content

chore(deps): Update actions/checkout action to v7 #123

chore(deps): Update actions/checkout action to v7

chore(deps): Update actions/checkout action to v7 #123

# following the contribution guide this check enforces the commit format
# [JIRA-TICKET] | [TYPE][(scope)][!]: <MESSAGE>
name: 'Validate Commit Messages'
on:
pull_request:
branches:
- main
jobs:
parse-commit-messages:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
fetch-depth: 0
persist-credentials: false
- name: Validate Commit Message(s)
env:
PULL_BASE_SHA: ${{ github.event.pull_request.base.sha }}
PULL_PULL_SHA: ${{ github.event.pull_request.head.sha }}
PULL_AUTHOR: ${{ github.event.pull_request.user.login }}
run: make commits/check