Skip to content

Commit c7a6010

Browse files
LonelyMidoriyaMaximPlusov
authored andcommitted
Add Java 25 to github actions
Delete ISARTOR_URL
1 parent 01c9901 commit c7a6010

File tree

4 files changed

+10
-11
lines changed

4 files changed

+10
-11
lines changed

.github/workflows/test-pr.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
java-version: [11, 17, 21]
17+
java-version: [11, 17, 21, 25]
1818

1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v5
2121
- name: JDK setup
22-
uses: actions/setup-java@v4
22+
uses: actions/setup-java@v5
2323
continue-on-error: true
2424
with:
2525
java-version: ${{ matrix.java-version }}

.github/workflows/update-arlington-workflow.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
java-version: [11, 17, 21]
16+
java-version: [11, 17, 21, 25]
1717

1818
steps:
1919
- name: Checkout code
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v5
2121
with:
2222
fetch-depth: 0
2323
ref: integration
2424
- name: JDK setup
25-
uses: actions/setup-java@v4
25+
uses: actions/setup-java@v5
2626
continue-on-error: true
2727
with:
2828
java-version: ${{ matrix.java-version }}

.github/workflows/update-jakarta-workflow.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
java-version: [11, 17, 21]
16+
java-version: [11, 17, 21, 25]
1717

1818
steps:
1919
- name: Checkout code
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v5
2121
with:
2222
fetch-depth: 0
2323
ref: integration
2424
- name: JDK setup
25-
uses: actions/setup-java@v4
25+
uses: actions/setup-java@v5
2626
continue-on-error: true
2727
with:
2828
java-version: ${{ matrix.java-version }}

veraPDF-integration/src/main/java/org/verapdf/pdfa/qa/AbstractTestCorpus.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@
4242
@XmlRootElement(namespace = "http://www.verapdf.org/corpus", name = "corpus")
4343
public abstract class AbstractTestCorpus<L> implements TestCorpus {
4444
private static final String VERA_URL = "https://github.com/veraPDF/veraPDF-corpus/archive/staging.zip";
45-
private static final String ISARTOR_URL = "https://corpora.openpreservation.org/veraPDF/isartor-pdfa-2008-08-13.zip";
4645
private static final String BFO_URL = "https://github.com/bfosupport/pdfa-testsuite/archive/master.zip";
4746

4847
@XmlElement(name = "details")
@@ -152,7 +151,7 @@ public enum Corpus {
152151
PDFAFlavour.PDFA_4_E, PDFAFlavour.PDFUA_1, PDFAFlavour.PDFUA_2,
153152
PDFAFlavour.WTPDF_1_0_REUSE, PDFAFlavour.WTPDF_1_0_ACCESSIBILITY),
154153
URI.create(VERA_URL), "veraCorp-"),
155-
ISARTOR("Isartor", EnumSet.of(PDFAFlavour.PDFA_1_B), URI.create(ISARTOR_URL), "isartCorp-"),
154+
ISARTOR("Isartor", EnumSet.of(PDFAFlavour.PDFA_1_B), VERA.getZipFile().toURI(), "isartCorp-"),
156155
BFO("BFO", EnumSet.of(PDFAFlavour.PDFA_2_B), URI.create(BFO_URL), "bfoCorp-"),
157156
TWG("TWG", EnumSet.of(PDFAFlavour.NO_FLAVOUR), VERA.getZipFile().toURI(), "twgCorp-");
158157

0 commit comments

Comments
 (0)