Skip to content

Commit 62b303a

Browse files
chore(deps): bump actions/setup-java from 1 to 3 (#318)
* chore(deps): bump actions/setup-java from 1 to 3 Bumps [actions/setup-java](https://github.com/actions/setup-java) from 1 to 3. - [Release notes](https://github.com/actions/setup-java/releases) - [Commits](actions/setup-java@v1...v3) --- updated-dependencies: - dependency-name: actions/setup-java dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * migrate action `setup-java` >= v2 Signed-off-by: Jan Kowalleck <[email protected]> --------- Signed-off-by: dependabot[bot] <[email protected]> Signed-off-by: Jan Kowalleck <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jan Kowalleck <[email protected]>
1 parent 4d6b39e commit 62b303a

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/cibuild.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,13 @@ jobs:
1414
- name: Checkout
1515
# see https://github.com/actions/checkout
1616
uses: actions/checkout@v4
17-
- name: Set up JDK 1.8
17+
- name: Set up JDK
1818
# see https://github.com/actions/setup-java
19-
uses: actions/setup-java@v1
19+
uses: actions/setup-java@v3
2020
with:
21-
java-version: 1.8
21+
java-version: '8'
22+
distribution: 'zulu'
23+
java-package: jdk
2224
- name: Build with Maven
2325
run: |
2426
cd tools
@@ -49,4 +51,4 @@ jobs:
4951
uses: actions/upload-artifact@v3
5052
with:
5153
name: XML-Schema-documentation
52-
path: docgen/xml/docs
54+
path: docgen/xml/docs

0 commit comments

Comments
 (0)