Skip to content

Commit ac24dad

Browse files
committed
Part of master->3.x rename [JSTEP-12]
1 parent 33a86f4 commit ac24dad

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

Diff for: .github/workflows/dep_build_v3.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
steps:
2222
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2323
with:
24-
ref: master
24+
ref: 3.x
2525
- name: Set up JDK
2626
uses: actions/setup-java@3a4f6e1af504cf6a31855fa899c6aa5355ba6c12 # v4.7.0
2727
with:
@@ -30,5 +30,3 @@ jobs:
3030
cache: 'maven'
3131
- name: Build and test
3232
run: ./mvnw -B -ff -ntp clean verify
33-
34-
# No recursive rebuild (yet?)

Diff for: .github/workflows/main.yml

+3-5
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,14 @@ name: Build and Deploy Snapshot
22
on:
33
push:
44
branches:
5-
- master
6-
- "3.0"
5+
- 3.x
76
- "2.19"
87
paths-ignore:
98
- "README.md"
109
- "release-notes/*"
1110
pull_request:
1211
branches:
13-
- master
14-
- "3.0"
12+
- 3.x
1513
- "2.19"
1614
paths-ignore:
1715
- "README.md"
@@ -49,7 +47,7 @@ jobs:
4947
run: ./mvnw -B -q -ff -ntp verify
5048
- name: Extract project Maven version
5149
id: projectVersion
52-
run: echo "version=$(./mvnw org.apache.maven.plugins:maven-help-plugin:3.3.0:evaluate -DforceStdout -Dexpression=project.version -q)" >> $GITHUB_OUTPUT
50+
run: echo "version=$(./mvnw org.apache.maven.plugins:maven-help-plugin:3.5.1:evaluate -DforceStdout -Dexpression=project.version -q)" >> $GITHUB_OUTPUT
5351
- name: Deploy snapshot
5452
if: ${{ matrix.release_build && github.event_name != 'pull_request' && endsWith(steps.projectVersion.outputs.version, '-SNAPSHOT') }}
5553
env:

0 commit comments

Comments
 (0)