Skip to content

Commit 7d79979

Browse files
committed
[#1772] Update GitHub actions for 2.0 branch
1 parent 26237e6 commit 7d79979

File tree

4 files changed

+11
-12
lines changed

4 files changed

+11
-12
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ name: Hibernate Reactive CI
33
on:
44
push:
55
branches:
6-
- main
6+
- 2.0
77
tags:
8-
- '2.*'
8+
- '2.0.*'
99
pull_request:
10-
branches: main
10+
branches: 2.0
1111

1212
# See https://github.com/hibernate/hibernate-orm/pull/4615 for a description of the behavior we're getting.
1313
concurrency:
@@ -99,7 +99,6 @@ jobs:
9999
runs-on: ubuntu-latest
100100
strategy:
101101
matrix:
102-
# db: [ 'MariaDB', 'MySQL', 'PostgreSQL', 'DB2', 'CockroachDB', 'MSSQLServer', 'Oracle' ]
103102
db: [ 'MariaDB', 'MySQL', 'PostgreSQL', 'MSSQLServer', 'CockroachDB', 'Db2', 'Oracle' ]
104103
steps:
105104
- uses: actions/checkout@v2
@@ -150,7 +149,7 @@ jobs:
150149
# We want to enable preview features when testing newer builds of OpenJDK:
151150
# even if we don't use these features, just enabling them can cause side effects
152151
# and it's useful to test that.
153-
- { name: "20", java_version_numeric: 20, from: 'jdk.java.net', jvm_args: '--enable-preview' }
152+
- { name: "20", java_version_numeric: 20, jvm_args: '--enable-preview' }
154153
- { name: "21-ea", java_version_numeric: 21, from: 'jdk.java.net', jvm_args: '--enable-preview' }
155154
- { name: "22-ea", java_version_numeric: 22, from: 'jdk.java.net', jvm_args: '--enable-preview' }
156155
steps:

.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", "1.0", "jakarta/main" ]
5+
branches: [ "2.0" ]
66
pull_request:
7-
branches: [ "main" ]
7+
branches: [ "2.0" ]
88
schedule:
99
- cron: "59 17 * * 2"
1010

.github/workflows/tracking-orm-6.build.yml renamed to .github/workflows/tracking-orm-6.2.build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
# Run the build using the latest ORM 5.x snapshots
22
# so that we can spot integration issues early
3-
name: Latest ORM 6.x
3+
name: Latest ORM 6.2.x
44

55
on:
66
# Trigger the workflow on push or pull request,
77
# but only for the main branch
88
push:
99
branches:
10-
- main
10+
- 2.0
1111
pull_request:
1212
branches:
13-
- main
13+
- 2.0
1414
schedule:
1515
# * is a special character in YAML, so you have to quote this string
1616
# Run every hour at minute 25

.github/workflows/tracking-vertx-4.build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ on:
77
# but only for the main branch
88
push:
99
branches:
10-
- main
10+
- 2.0
1111
pull_request:
1212
branches:
13-
- main
13+
- 2.0
1414
schedule:
1515
# * is a special character in YAML, so you have to quote this string
1616
# Run every hour at minute 25

0 commit comments

Comments
 (0)