Skip to content

Commit

Permalink
chore(java 17): Compile with Java 17
Browse files Browse the repository at this point in the history
Use version 2.0.0 of release action which compiles with Java 17

11 compatibility is needed for the connector to be compatible with
maintenance versions

Closes [BPM-28](https://bonitasoft.atlassian.net/browse/BPM-28)
  • Loading branch information
vhemery committed Nov 28, 2023
1 parent f5575d6 commit 0742ff2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Setup Java
uses: actions/setup-java@v3
with:
java-version: 11
java-version: 17
distribution: 'temurin'
cache: 'maven'

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/createRelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Release connector
uses: bonitasoft/action-release-connector@1.0.0
uses: bonitasoft/action-release-connector@2.0.0
id: release-connector
with:
release-version: ${{ github.event.inputs.version }}
Expand Down

0 comments on commit 0742ff2

Please sign in to comment.