Skip to content

Commit ea3af9a

Browse files
author
Andy Barilla
committed
Merge branch 'main' of github.com:andybarilla/quarkus-openapi-generator
2 parents a5207f7 + d5fdf10 commit ea3af9a

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed

.github/workflows/build.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
push:
55
branches:
66
- "main"
7+
- "main-lts"
78
paths-ignore:
89
- '.gitignore'
910
- 'CODEOWNERS'
@@ -27,7 +28,10 @@ jobs:
2728
runs-on: ${{ matrix.os }}
2829
strategy:
2930
matrix:
30-
os: [ubuntu-latest, windows-latest]
31+
os: [
32+
ubuntu-latest,
33+
# windows-latest - Disabled due to https://github.com/quarkiverse/quarkus-openapi-generator/pull/836#issuecomment-2457329495
34+
]
3135
java: [
3236
{ 'version': '17' },
3337
{ 'version': '21' }
@@ -53,7 +57,10 @@ jobs:
5357
runs-on: ${{ matrix.os }}
5458
strategy:
5559
matrix:
56-
os: [ubuntu-latest, windows-latest]
60+
os: [
61+
ubuntu-latest,
62+
# windows-latest - Disabled due to https://github.com/quarkiverse/quarkus-openapi-generator/pull/836#issuecomment-2457329495
63+
]
5764
java: [
5865
{ 'version': '17' },
5966
{ 'version': '21' }

.github/workflows/build_website.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
push:
55
branches:
66
- "main"
7+
- "main-lts"
78
paths-ignore:
89
- '.gitignore'
910
- 'CODEOWNERS'

.github/workflows/codeql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: "CodeQL"
22

33
on:
44
push:
5-
branches: [ "main" ]
5+
branches: [ "main", "main-lts" ]
66
pull_request:
7-
branches: [ "main" ]
7+
branches: [ "main", "main-lts" ]
88
schedule:
99
- cron: "2 0 * * 6"
1010

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<maven.compiler.release>17</maven.compiler.release>
2727
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2828
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
29-
<quarkus.version>3.15.1</quarkus.version>
29+
<quarkus.version>3.16.2</quarkus.version>
3030
<apicurio.version>1.1.1.Final</apicurio.version>
3131
<version.com.github.javaparser>3.26.2</version.com.github.javaparser>
3232
<version.org.assertj>3.26.3</version.org.assertj>

0 commit comments

Comments
 (0)