diff --git a/.github/workflows/format_emscripten.yml b/.github/workflows/format_emscripten.yml index db8351147ce87..fb9e72d23afa0 100644 --- a/.github/workflows/format_emscripten.yml +++ b/.github/workflows/format_emscripten.yml @@ -48,7 +48,7 @@ jobs: run: ls -a - name: Create Pull Request - uses: peter-evans/create-pull-request@v4 + uses: peter-evans/create-pull-request@v6 with: token: ${{ secrets.TX_PR_CREATOR }} commit-message: JSON linter gh-pages file update diff --git a/.github/workflows/pull-translations.yml b/.github/workflows/pull-translations.yml index 0df16e6a56a21..7723463308728 100644 --- a/.github/workflows/pull-translations.yml +++ b/.github/workflows/pull-translations.yml @@ -44,7 +44,7 @@ jobs: - name: "Update stats" run: ./lang/update_stats.sh - name: Create Pull Request - uses: peter-evans/create-pull-request@v4 + uses: peter-evans/create-pull-request@v6 with: commit-message: Routine i18n updates on ${{ steps.current-date.outputs.formattedTime }} token: ${{ secrets.TX_PR_CREATOR }} diff --git a/.github/workflows/toc.yml b/.github/workflows/toc.yml index 1e0c4b352baf1..71165c1f522e6 100644 --- a/.github/workflows/toc.yml +++ b/.github/workflows/toc.yml @@ -17,7 +17,7 @@ jobs: - uses: actions/checkout@v4 - run: npx doctoc doc/JSON_INFO.md --github - name: Create Pull Request - uses: peter-evans/create-pull-request@v4 + uses: peter-evans/create-pull-request@v6 with: commit-message: Update the table of contents branch: update-toc diff --git a/.github/workflows/update-tilesets.yml b/.github/workflows/update-tilesets.yml index 315a9e44e159d..787fc8817e189 100644 --- a/.github/workflows/update-tilesets.yml +++ b/.github/workflows/update-tilesets.yml @@ -35,7 +35,7 @@ jobs: make tools/format/json_formatter.cgi find gfx/ -name "*.json" -print0 | xargs -0 -L 1 -P $(nproc) tools/format/json_formatter.cgi || exit 0 - name: Create Pull Request - uses: peter-evans/create-pull-request@v4 + uses: peter-evans/create-pull-request@v6 with: commit-message: | Routine tileset updates on ${{ steps.current-date.outputs.formattedTime }} diff --git a/.github/workflows/weekly-changelog.yml b/.github/workflows/weekly-changelog.yml index 1558002b9b3b5..a73f418894126 100644 --- a/.github/workflows/weekly-changelog.yml +++ b/.github/workflows/weekly-changelog.yml @@ -33,7 +33,7 @@ jobs: echo "date=$( date +"%Y-%m-%d" -d $CURR_DATE )" >> $GITHUB_OUTPUT echo "old_date=$LAST_WEEK" >> $GITHUB_OUTPUT - name: Create Pull Request - uses: peter-evans/create-pull-request@v4 + uses: peter-evans/create-pull-request@v6 with: commit-message: Weekly Changelog ${{ steps.getting-changes.outputs.old_date }} to ${{ steps.getting-changes.outputs.date }} committer: David Seguin