Bump openssl from 0.10.68 to 0.10.71 #36
Workflow file for this run
This file contains hidden or 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: Ensure repository healthy state over time | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| changelog-format: | |
| # Ensure CHANGELOG respect the KeepAChangelog format | |
| strategy: | |
| matrix: | |
| changelog: [git2mail] | |
| include: | |
| - changelog: git2mail | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.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: 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 |