Bump cpp-linter from 1.6.2 to 1.6.3 #255
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: "Test cpp-linter-action" | |
on: | |
push: | |
branches: main | |
paths-ignore: "docs/**" | |
pull_request_target: | |
branches: main | |
paths-ignore: "docs/**" | |
workflow_dispatch: | |
jobs: | |
add-tag: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
token: ${{ github.token }} | |
- name: retag latest commit for testing | |
run: | | |
git config user.name 'github-actions' | |
git config user.email '41898282+github-actions[bot]@users.noreply.github.com' | |
git tag --delete latest || true | |
git push --delete origin latest || true | |
git tag -a latest -m 'Retag latest commit' | |
git push origin latest | |
call-test-action: | |
uses: cpp-linter/test-cpp-linter-action/.github/workflows/cpp-lint-action.yml@master | |
secrets: inherit | |
needs: add-tag |