Browse Source

Use OSS self hosted runners

Closes gh-40683
3.1.x
Phillip Webb 2 years ago
parent
commit
101b3a5416
  1. 2
      .github/workflows/build-and-deploy-snapshot.yml
  2. 2
      .github/workflows/build-pull-request.yml
  3. 2
      .github/workflows/ci.yml
  4. 2
      .github/workflows/release.yml
  5. 2
      .github/workflows/run-system-tests.yml

2
.github/workflows/build-and-deploy-snapshot.yml

@ -8,7 +8,7 @@ concurrency: @@ -8,7 +8,7 @@ concurrency:
jobs:
build-and-deploy-snapshot:
name: Build and Deploy Snapshot
runs-on: ubuntu22-8-32
runs-on: ubuntu22-8-32-OSS
if: ${{ github.repository == 'spring-projects/spring-boot' }}
steps:
- name: Check Out Code

2
.github/workflows/build-pull-request.yml

@ -7,7 +7,7 @@ permissions: @@ -7,7 +7,7 @@ permissions:
jobs:
build:
name: Build Pull Request
runs-on: ubuntu22-8-32
runs-on: ubuntu22-8-32-OSS
if: ${{ github.repository == 'spring-projects/spring-boot' }}
steps:
- name: Set Up JDK 17

2
.github/workflows/ci.yml

@ -13,7 +13,7 @@ jobs: @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
os:
- id: ubuntu22-8-32
- id: ubuntu22-8-32-OSS
name: Linux
- id: windows-latest
name: Windows

2
.github/workflows/release.yml

@ -9,7 +9,7 @@ jobs: @@ -9,7 +9,7 @@ jobs:
build-and-stage-release:
if: ${{ github.repository == 'spring-projects/spring-boot' }}
name: Build and Stage Release
runs-on: ubuntu22-8-32
runs-on: ubuntu22-8-32-OSS
steps:
- name: Check Out Code
uses: actions/checkout@v4

2
.github/workflows/run-system-tests.yml

@ -8,7 +8,7 @@ concurrency: @@ -8,7 +8,7 @@ concurrency:
jobs:
run-system-tests:
name: 'Java ${{ matrix.java.version}}'
runs-on: ubuntu22-8-32
runs-on: ubuntu22-8-32-OSS
if: ${{ github.repository == 'spring-projects/spring-boot' }}
strategy:
matrix:

Loading…
Cancel
Save