GHA: Update to peter-evans/create-pull-request@v6

This commit is contained in:
Magne Sjaastad 2024-03-17 10:52:25 +01:00
parent 6a5c6ee545
commit 63defd0f1a
5 changed files with 5 additions and 5 deletions

View File

@ -36,7 +36,7 @@ jobs:
cd Fwk/AppFwk cd Fwk/AppFwk
find -name '*.h' -o -name '*.cpp' -o -name '*.inl' | grep -v gtest | xargs clang-format-15 -i find -name '*.h' -o -name '*.cpp' -o -name '*.inl' | grep -v gtest | xargs clang-format-15 -i
git diff git diff
- uses: peter-evans/create-pull-request@v5 - uses: peter-evans/create-pull-request@v6
with: with:
token: ${{ secrets.GITHUB_TOKEN }} token: ${{ secrets.GITHUB_TOKEN }}
commit-message: "Fixes by clang-format" commit-message: "Fixes by clang-format"

View File

@ -76,7 +76,7 @@ jobs:
find -name '*.h' -o -name '*.cpp' -o -name '*.inl' | xargs clang-format-15 -i find -name '*.h' -o -name '*.cpp' -o -name '*.inl' | xargs clang-format-15 -i
cd ../GrpcInterface cd ../GrpcInterface
find -name '*.h' -o -name '*.cpp' -o -name '*.inl' | xargs clang-format-15 -i find -name '*.h' -o -name '*.cpp' -o -name '*.inl' | xargs clang-format-15 -i
- uses: peter-evans/create-pull-request@v5 - uses: peter-evans/create-pull-request@v6
with: with:
token: ${{ secrets.GITHUB_TOKEN }} token: ${{ secrets.GITHUB_TOKEN }}
commit-message: "Fixes by clang-tidy" commit-message: "Fixes by clang-tidy"

View File

@ -28,7 +28,7 @@ jobs:
cd .. cd ..
git diff git diff
- uses: peter-evans/create-pull-request@v5 - uses: peter-evans/create-pull-request@v6
with: with:
token: ${{ secrets.GITHUB_TOKEN }} token: ${{ secrets.GITHUB_TOKEN }}
commit-message: "Fixes by cmake-format" commit-message: "Fixes by cmake-format"

View File

@ -15,7 +15,7 @@ jobs:
pip install black pip install black
cd GrpcInterface cd GrpcInterface
black . black .
- uses: peter-evans/create-pull-request@v5 - uses: peter-evans/create-pull-request@v6
with: with:
token: ${{ secrets.GITHUB_TOKEN }} token: ${{ secrets.GITHUB_TOKEN }}
commit-message: "Python code linting changes detected by black" commit-message: "Python code linting changes detected by black"

View File

@ -11,7 +11,7 @@ jobs:
- uses: sobolevn/misspell-fixer-action@master - uses: sobolevn/misspell-fixer-action@master
with: with:
options: "-rsvnuR ApplicationLibCode/" options: "-rsvnuR ApplicationLibCode/"
- uses: peter-evans/create-pull-request@v5 - uses: peter-evans/create-pull-request@v6
with: with:
token: ${{ secrets.GITHUB_TOKEN }} token: ${{ secrets.GITHUB_TOKEN }}
commit-message: "Fixes by misspell-fixer" commit-message: "Fixes by misspell-fixer"