diff --git a/.github/workflows/clang-format.yml b/.github/workflows/clang-format.yml index 25010ffe32..c0ec9cf233 100644 --- a/.github/workflows/clang-format.yml +++ b/.github/workflows/clang-format.yml @@ -36,7 +36,7 @@ jobs: cd Fwk/AppFwk find -name '*.h' -o -name '*.cpp' -o -name '*.inl' | grep -v gtest | xargs clang-format-15 -i git diff - - uses: peter-evans/create-pull-request@v6 + - uses: peter-evans/create-pull-request@v7 with: token: ${{ secrets.GITHUB_TOKEN }} commit-message: "Fixes by clang-format" diff --git a/.github/workflows/clang-tidy.yml b/.github/workflows/clang-tidy.yml index 3e159633e9..cda1562bdb 100644 --- a/.github/workflows/clang-tidy.yml +++ b/.github/workflows/clang-tidy.yml @@ -68,7 +68,7 @@ jobs: find -name '*.h' -o -name '*.cpp' -o -name '*.inl' | xargs clang-format-15 -i cd ../GrpcInterface find -name '*.h' -o -name '*.cpp' -o -name '*.inl' | xargs clang-format-15 -i - - uses: peter-evans/create-pull-request@v6 + - uses: peter-evans/create-pull-request@v7 with: token: ${{ secrets.GITHUB_TOKEN }} commit-message: "Fixes by clang-tidy" diff --git a/.github/workflows/cmake-format.yml b/.github/workflows/cmake-format.yml index eb6b5ec436..32202bb333 100644 --- a/.github/workflows/cmake-format.yml +++ b/.github/workflows/cmake-format.yml @@ -32,7 +32,7 @@ jobs: cd .. git diff - - uses: peter-evans/create-pull-request@v6 + - uses: peter-evans/create-pull-request@v7 with: token: ${{ secrets.GITHUB_TOKEN }} commit-message: "Fixes by cmake-format" diff --git a/.github/workflows/python-linting.yml b/.github/workflows/python-linting.yml index 6e312f79ca..7666ffe855 100644 --- a/.github/workflows/python-linting.yml +++ b/.github/workflows/python-linting.yml @@ -15,7 +15,7 @@ jobs: pip install black cd GrpcInterface black . - - uses: peter-evans/create-pull-request@v6 + - uses: peter-evans/create-pull-request@v7 with: token: ${{ secrets.GITHUB_TOKEN }} commit-message: "Python code linting changes detected by black" diff --git a/.github/workflows/spell-check.yml b/.github/workflows/spell-check.yml index 7c4799a0db..047fcb961e 100644 --- a/.github/workflows/spell-check.yml +++ b/.github/workflows/spell-check.yml @@ -11,7 +11,7 @@ jobs: - uses: sobolevn/misspell-fixer-action@master with: options: "-rsvnuR ApplicationLibCode/" - - uses: peter-evans/create-pull-request@v6 + - uses: peter-evans/create-pull-request@v7 with: token: ${{ secrets.GITHUB_TOKEN }} commit-message: "Fixes by misspell-fixer" diff --git a/.github/workflows/update-submodules.yml b/.github/workflows/update-submodules.yml index 096a5661e0..b966c3c328 100644 --- a/.github/workflows/update-submodules.yml +++ b/.github/workflows/update-submodules.yml @@ -35,7 +35,7 @@ jobs: - name: Create PR # The generated PR does not have any tests. Close and reopen the PR to activate tests. - uses: peter-evans/create-pull-request@v6 + uses: peter-evans/create-pull-request@v7 with: token: ${{ secrets.GITHUB_TOKEN }} commit-message: "Update ${{ matrix.submodule }} to ${{ steps.git-change-job.outputs.LATEST_TAG }}"