diff --git a/.github/workflows/update-api-spec.yml b/.github/workflows/update-api-spec.yml index fef04025..2f3596f6 100644 --- a/.github/workflows/update-api-spec.yml +++ b/.github/workflows/update-api-spec.yml @@ -49,7 +49,7 @@ jobs: fi - name: 'Create PR' if: ${{ inputs.dry_run != true && env.NEW_VERSION && !env.EXISTING_PR }} - uses: peter-evans/create-pull-request@v7 + uses: peter-evans/create-pull-request@v8 with: branch: "${{ env.UPDATE_BRANCH }}" commit-message: "Bump Develocity API spec version to ${{ env.NEW_VERSION }}" diff --git a/.github/workflows/update-examples.yml b/.github/workflows/update-examples.yml index 14348e2b..58ec4ac8 100644 --- a/.github/workflows/update-examples.yml +++ b/.github/workflows/update-examples.yml @@ -47,7 +47,7 @@ jobs: - name: 'Update version in all files' run: ./.github/scripts/replace_string.py ./ "$OLD_VERSION" "$NEW_VERSION" - name: 'Create PR' - uses: peter-evans/create-pull-request@v7 + uses: peter-evans/create-pull-request@v8 with: base: 'main' branch: "replace-${{ env.OLD_VERSION }}-${{ env.NEW_VERSION }}"