mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-17 12:09:16 +00:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 7.0.0 to 7.0.1. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0...3d3c42e5aac5ba805825da76410c181273ba90b1) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 7.0.1 dependency-type: direct:production update-type: version-update:semver-patch ... See gh-51080 Signed-off-by: dependabot[bot] <support@github.com>
25 lines
746 B
YAML
25 lines
746 B
YAML
name: Build Pull Request
|
|
on: pull_request
|
|
permissions:
|
|
contents: read
|
|
jobs:
|
|
build:
|
|
name: Build Pull Request
|
|
if: ${{ github.repository == 'spring-projects/spring-boot' }}
|
|
runs-on: ${{ vars.UBUNTU_MEDIUM || 'ubuntu-latest' }}
|
|
steps:
|
|
- name: Check Out Code
|
|
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
- name: Build
|
|
id: build
|
|
uses: ./.github/actions/build
|
|
- name: Print JVM Thread Dumps When Cancelled
|
|
if: cancelled()
|
|
uses: ./.github/actions/print-jvm-thread-dumps
|
|
- name: Upload Build Reports
|
|
if: failure()
|
|
uses: actions/upload-artifact@v7
|
|
with:
|
|
name: build-reports
|
|
path: '**/build/reports/'
|