Skip to content

Commit

Permalink
chore(ci): Downgrade to Github Actions runner ubuntu-20.04 to avoid S…
Browse files Browse the repository at this point in the history
…QL Server problems (#545)

Likely related to this
[issue](actions/runner-images#10649).
  • Loading branch information
kagkarlsson committed Sep 27, 2024
1 parent c218e1f commit e50183e
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/boot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: spring-boot-compatibility
on: [push]
jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
strategy:
matrix:
spring-boot: [ '2.5.15', '2.6.15', '2.7.18', '3.0.13', '3.1.10', '3.2.4' ]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: build
on: [push,pull_request]
jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
strategy:
matrix:
java: [ '11', '17', '21' ]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
main:
name: Validate PR title
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: amannn/action-semantic-pull-request@v5
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: pull-request-check
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
strategy:
matrix:
java: [ '17' ]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
build:

runs-on: ubuntu-latest
runs-on: ubuntu-20.04

steps:
- name: Checkout
Expand Down

0 comments on commit e50183e

Please sign in to comment.