Skip to content

Commit 4da833a

Browse files
committed
Update deps to 2.19.0 latest
1 parent dd02e52 commit 4da833a

File tree

3 files changed

+7
-14
lines changed

3 files changed

+7
-14
lines changed

.github/workflows/dep_build_v2.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,18 @@ permissions:
1111
jobs:
1212
build:
1313
# Do we want wide matrix build? For now, limited
14-
runs-on: ${{ matrix.os }}
14+
runs-on: ubuntu-latest
1515
strategy:
1616
fail-fast: false
1717
matrix:
1818
# 03-Jun-2024, tatu: Apparently Scala won't like JDK 21
1919
java_version: ['8', '11', '17']
20-
os: ['ubuntu-22.04']
2120
env:
2221
JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1"
2322
steps:
2423
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
24+
with:
25+
ref: 2.x
2526
- name: Set up JDK
2627
uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1
2728
with:

.github/workflows/main.yml

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,19 @@
11
name: Build and Run Tests
22
on:
33
push:
4-
branches:
5-
- 3.x
6-
- "2.19"
4+
branches: [2.*]
75
pull_request:
8-
branches:
9-
- 3.x
10-
- "2.19"
11-
# Also run once per day anyway, at 10:00 UTC (18:00 PT)
12-
schedule:
13-
- cron: "0 10 * * *"
6+
branches: [2.*]
147
permissions:
158
contents: read
169

1710
jobs:
1811
build:
19-
runs-on: ${{ matrix.os }}
12+
runs-on: ubuntu-latest
2013
strategy:
2114
fail-fast: false
2215
matrix:
2316
java_version: ['17', '21', '23']
24-
os: ['ubuntu-22.04']
2517
env:
2618
JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1"
2719
steps:

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.fasterxml.jackson</groupId>
66
<artifactId>jackson-bom</artifactId>
7-
<version>2.19.0-rc2</version>
7+
<version>2.19.0</version>
88
</parent>
99

1010
<artifactId>jackson-benchmarks</artifactId>

0 commit comments

Comments
 (0)