Skip to content

Commit 1d3ab3b

Browse files
authored
Upgrade to asciidoctor-pdf 2.3.3 (#82)
Upgrade to asciidoctor-pdf 2.3.3
1 parent 77e6874 commit 1d3ab3b

File tree

4 files changed

+10
-9
lines changed

4 files changed

+10
-9
lines changed

.github/workflows/continuous-integration.yaml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ jobs:
2626
runs-on: ${{ matrix.os }}
2727
steps:
2828
- name: Fetch Sources
29-
uses: actions/checkout@v2
29+
uses: actions/checkout@v3
3030
with:
3131
fetch-depth: 1
32-
- uses: actions/setup-java@v2
32+
- uses: actions/setup-java@v3
3333
with:
34-
distribution: 'temurin'
34+
distribution: temurin
3535
java-version: ${{ matrix.java }}
3636
- name: Build
3737
run: |
@@ -48,10 +48,11 @@ jobs:
4848
- '11'
4949
- '17'
5050
steps:
51-
- uses: actions/checkout@v2
51+
- name: Fetch Sources
52+
uses: actions/checkout@v3
5253
with:
5354
fetch-depth: 1
54-
- uses: actions/setup-java@v2
55+
- uses: actions/setup-java@v3
5556
with:
5657
distribution: temurin
5758
java-version: ${{ matrix.java }}

asciidoctorj-pdf/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
properName=AsciidoctorJ PDF
22
description=AsciidoctorJ PDF bundles the Asciidoctor PDF RubyGem (asciidoctor-pdf) so it can be loaded into the JVM using JRuby.
3-
version=2.3.0
3+
version=2.3.3
44
gem_name=asciidoctor-pdf

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ ext {
3939
hamcrestVersion = '2.2'
4040

4141
// gem versions
42-
asciidoctorJVersion = project.hasProperty('asciidoctorJVersion') ? project.asciidoctorJVersion : '2.5.5'
43-
asciidoctorPdfGemVersion = project.hasProperty('asciidoctorPdfGemVersion') ? project.asciidoctorPdfGemVersion : '2.3.0'
42+
asciidoctorJVersion = project.hasProperty('asciidoctorJVersion') ? project.asciidoctorJVersion : '2.5.7'
43+
asciidoctorPdfGemVersion = project.hasProperty('asciidoctorPdfGemVersion') ? project.asciidoctorPdfGemVersion : '2.3.3'
4444

4545
addressableVersion = '2.8.0'
4646
concurrentRubyVersion = '1.1.7'

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
version=2.3.0
1+
version=2.3.3
22
sourceCompatibility=1.8
33
targetCompatibility=1.8

0 commit comments

Comments
 (0)