Skip to content

Commit

Permalink
chore(deps): bump actions/setup-java from 1 to 3 (#318)
Browse files Browse the repository at this point in the history
* 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]>
  • Loading branch information
dependabot[bot] and jkowalleck authored Oct 12, 2023
1 parent 4d6b39e commit 62b303a
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/cibuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,13 @@ jobs:
- name: Checkout
# see https://github.com/actions/checkout
uses: actions/checkout@v4
- name: Set up JDK 1.8
- name: Set up JDK
# see https://github.com/actions/setup-java
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
java-version: 1.8
java-version: '8'
distribution: 'zulu'
java-package: jdk
- name: Build with Maven
run: |
cd tools
Expand Down Expand Up @@ -49,4 +51,4 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: XML-Schema-documentation
path: docgen/xml/docs
path: docgen/xml/docs

0 comments on commit 62b303a

Please sign in to comment.