Skip to content
This repository was archived by the owner on Dec 9, 2025. It is now read-only.

build(deps): bump actions/checkout from 5 to 6 #83

build(deps): bump actions/checkout from 5 to 6

build(deps): bump actions/checkout from 5 to 6 #83

Workflow file for this run

permissions:
contents: read
on:
# Run on push to main branch and on pull requests
push:
branches: [main]
pull_request:
concurrency:
# Only run the latest workflow
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
name: check
jobs:
typos:
name: typos
runs-on: ubuntu-latest
permissions:
contents: read
checks: write
steps:
- uses: actions/checkout@v6
with:
submodules: true
- name: Check for typos
uses: crate-ci/typos@v1.39.0
conventional_commit:
name: conventional commit check
runs-on: ubuntu-latest
if: github.event_name != 'pull_request'
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Conventional commit check
uses: cocogitto/cocogitto-action@v4
with:
command: check
conventional_commit_pr:
name: PR conventional commit check
runs-on: ubuntu-latest
if: github.event_name == 'pull_request'
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
# pick the pr HEAD instead of the merge commit
ref: ${{ github.event.pull_request.head.sha }}
- name: Conventional commit check
uses: cocogitto/cocogitto-action@v4
with:
command: check