Skip to content

Conversation

@softwaregravy
Copy link
Contributor

@softwaregravy softwaregravy commented Sep 18, 2022

Update to use actions/checkout@v3

Resolves #116

Update to use [`actions/checkout@v3`](https://github.com/actions/checkout)
@softwaregravy
Copy link
Contributor Author

I have tested this in my project with the following:

name: clang-format Check
on: [push]
jobs:
  formatting-check:
    name: Formatting Check
    runs-on: ubuntu-latest
    strategy:
      matrix:
        path:
          - 'src'
          - 'include'
    steps:
    - uses: actions/checkout@v3
    - name: Run clang-format style check for C/C++/Protobuf programs.
      uses: jidicula/clang-format-action@v4.9.0
      with:
        clang-format-version: '14'
        check-path: ${{ matrix.path }}

@softwaregravy
Copy link
Contributor Author

Fixes #116

Copy link
Owner

@jidicula jidicula left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you for your contribution!

@jidicula jidicula merged commit 295eecb into jidicula:main Sep 18, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Update example code to checkoutv3

2 participants