build(deps): bump github/super-linter from 5 to 7 in the dependencies group across 1 directory #32
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: git-commit-data-action | |
on: | |
pull_request: | |
push: | |
branches: | |
- v1.x | |
permissions: read-all | |
jobs: | |
script-testing: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
# Need to download all history in order | |
# to make the tests work properly | |
fetch-depth: 0 | |
- uses: docker://ffurrer/bats:latest | |
with: | |
args: '--recursive .' | |
os-testing: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
- macos-latest | |
- windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./ | |
- name: Output | |
run: | | |
echo "Get commit info" | |
echo " - ${{ env.GIT_COMMIT_SHA }}" | |
echo " - ${{ env.GIT_COMMIT_SHORT_SHA }}" | |
echo "Get author info" | |
echo " - ${{ env.GIT_COMMIT_AUTHOR }}" | |
echo " - ${{ env.GIT_COMMIT_AUTHOR_NAME }}" | |
echo " - ${{ env.GIT_COMMIT_AUTHOR_EMAIL }}" | |
echo "Get committer info" | |
echo " - ${{ env.GIT_COMMIT_COMMITTER }}" | |
echo " - ${{ env.GIT_COMMIT_COMMITTER_NAME }}" | |
echo " - ${{ env.GIT_COMMIT_COMMITTER_EMAIL }}" | |
echo "Get message info" | |
echo " - ${{ env.GIT_COMMIT_MESSAGE_SUBJECT }}" | |
echo " - ${{ env.GIT_COMMIT_MESSAGE_SUBJECT_SANITIZED }}" | |
echo " - ${{ env.GIT_COMMIT_MESSAGE_BODY }}" | |
release: | |
runs-on: ubuntu-latest | |
needs: | |
- script-testing | |
- os-testing | |
permissions: | |
contents: write | |
issues: write | |
id-token: write | |
packages: write | |
concurrency: | |
group: release-${{ github.ref }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- name: Release That | |
uses: rlespinasse/release-that@v1 | |
with: | |
github-token: ${{ secrets.GH_TOKEN }} |