Skip to content

build(deps): bump the prod-deps group across 1 directory with 6 updates #1296

build(deps): bump the prod-deps group across 1 directory with 6 updates

build(deps): bump the prod-deps group across 1 directory with 6 updates #1296

Workflow file for this run

name: Ensure repository healthy state over time
permissions:
contents: read
on:
push:
branches: [ main ]
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
bindings-headers-sync:
# Assert .h and .hpp bindings files are the ones generated
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af # v1.0.7
with:
toolchain: stable
- uses: actions-rs/cargo@844f36862e911db73fe0815f00a4a2602c279505 # v1.0.3
with:
command: install
args: cbindgen
- name: Test C header
working-directory: bindings/C
run: cbindgen --config cbindgen_c.toml | diff - mla.h
- name: Test C++ header
working-directory: bindings/C
run: cbindgen --config cbindgen_cpp.toml | diff - mla.hpp
changelog-format:
# Ensure CHANGELOGs respect the KeepAChangelog format
strategy:
matrix:
changelog: [mla, mlar]
include:
- changelog: mla
path: mla
- changelog: mlar
path: mlar
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Get ${{ matrix.changelog }} Changelog Entry
uses: mindsers/changelog-reader-action@32aa5b4c155d76c94e4ec883a223c947b2f02656 # v2.2.3
id: changelog_reader
with:
# Check format for the last 10 entries
validation_depth: 10
path: ${{ matrix.path }}/CHANGELOG.md
- name: Information
run: |
echo -e "\e[1mVersion\e[0m ${{ steps.changelog_reader.outputs.version }}"
echo -e "\e[1mStatus\e[0m ${{ steps.changelog_reader.outputs.status }}"
echo -en "\e[1mBody\e[0m"
cat << 'EOF'
${{ steps.changelog_reader.outputs.changes }}
EOF