diff --git a/.github/workflows/copyrights.yml b/.github/workflows/copyrights.yml index 0b22b5442db..988d1dd803f 100644 --- a/.github/workflows/copyrights.yml +++ b/.github/workflows/copyrights.yml @@ -11,7 +11,7 @@ jobs: - name: Check run: | ./tools/check_copyrights.sh - - uses: peter-evans/create-pull-request@v7 + - uses: peter-evans/create-pull-request@v8 with: token: ${{ secrets.GITHUB_TOKEN }} branch: update-copyright-list-${{ github.ref_name }} diff --git a/.github/workflows/generated-headers.yml b/.github/workflows/generated-headers.yml index bc8a4ec9085..776a11f053a 100644 --- a/.github/workflows/generated-headers.yml +++ b/.github/workflows/generated-headers.yml @@ -22,7 +22,7 @@ jobs: find ql -name *.am | xargs touch make dist rm QuantLib-*.tar.gz - - uses: peter-evans/create-pull-request@v7 + - uses: peter-evans/create-pull-request@v8 with: token: ${{ secrets.GITHUB_TOKEN }} branch: update-generated-headers-${{ github.ref_name }} diff --git a/.github/workflows/includes.yml b/.github/workflows/includes.yml index 4e1a25ecff5..0b13d14d602 100644 --- a/.github/workflows/includes.yml +++ b/.github/workflows/includes.yml @@ -12,7 +12,7 @@ jobs: run: | shopt -s globstar sed -i -E -e 's|#include *"(ql/.*\.hpp)"|#include <\1>|g' **/*.[hc]pp - - uses: peter-evans/create-pull-request@v7 + - uses: peter-evans/create-pull-request@v8 with: token: ${{ secrets.GITHUB_TOKEN }} branch: fix-include-in-quotes-${{ github.ref_name }} diff --git a/.github/workflows/misspell.yml b/.github/workflows/misspell.yml index 06c61e18259..aed5cb24e3a 100644 --- a/.github/workflows/misspell.yml +++ b/.github/workflows/misspell.yml @@ -9,7 +9,7 @@ jobs: steps: - uses: actions/checkout@v4 - uses: sobolevn/misspell-fixer-action@master - - uses: peter-evans/create-pull-request@v7 + - uses: peter-evans/create-pull-request@v8 with: token: ${{ secrets.GITHUB_TOKEN }} branch: misspell-fixes-${{ github.ref_name }} diff --git a/.github/workflows/namespaces.yml b/.github/workflows/namespaces.yml index 6bb209511fb..629d12e452f 100644 --- a/.github/workflows/namespaces.yml +++ b/.github/workflows/namespaces.yml @@ -20,7 +20,7 @@ jobs: sed -i -e 's/ext::make_tuple\b/std::make_tuple/g' **/*.[hc]pp sed -i -e 's/ext::get\b/std::get/g' **/*.[hc]pp sed -i -e 's/ext::tie\b/std::tie/g' **/*.[hc]pp - - uses: peter-evans/create-pull-request@v7 + - uses: peter-evans/create-pull-request@v8 with: token: ${{ secrets.GITHUB_TOKEN }} branch: fix-ext-namespace-${{ github.ref_name }} diff --git a/.github/workflows/tidy.yml b/.github/workflows/tidy.yml index 8eb635e15d8..23bccb79633 100644 --- a/.github/workflows/tidy.yml +++ b/.github/workflows/tidy.yml @@ -17,7 +17,7 @@ jobs: cmake --preset linux-ci-build-with-clang-tidy cd build/linux-ci-build-with-clang-tidy cmake --build . -j1 - - uses: peter-evans/create-pull-request@v7 + - uses: peter-evans/create-pull-request@v8 if: ${{ always() }} with: token: ${{ secrets.GITHUB_TOKEN }}