Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/pull_request_gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ jobs:
timeout-minutes: 120
steps:
- name: Checkout timefold-quickstarts
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
path: './timefold-quickstarts'

- name: Checkout timefold-solver (PR) # Checkout the PR branch first, if it exists
if: github.head_ref # Only true if this is a PR.
id: checkout-solver-pr
uses: actions/checkout@v5
uses: actions/checkout@v6
continue-on-error: true
with:
repository: ${{ github.actor }}/timefold-solver
Expand All @@ -45,7 +45,7 @@ jobs:
fetch-depth: 0 # Otherwise merge will fail on account of not having history.
- name: Checkout timefold-solver (main) # Checkout the main branch if the PR branch does not exist
if: ${{ steps.checkout-solver-pr.outcome != 'success' }}
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: TimefoldAI/timefold-solver
ref: main
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pull_request_maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@ jobs:
- name: Support long paths
run: git config --global core.longpaths true
- name: Checkout timefold-quickstarts
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
path: './timefold-quickstarts'

- name: Checkout timefold-solver (PR) # Checkout the PR branch first, if it exists
if: github.head_ref # Only true if this is a PR.
id: checkout-solver-pr
uses: actions/checkout@v5
uses: actions/checkout@v6
continue-on-error: true
with:
repository: ${{ github.actor }}/timefold-solver
Expand All @@ -47,7 +47,7 @@ jobs:
fetch-depth: 0 # Otherwise merge will fail on account of not having history.
- name: Checkout timefold-solver (main) # Checkout the main branch if the PR branch does not exist
if: ${{ steps.checkout-solver-pr.outcome != 'success' }}
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: TimefoldAI/timefold-solver
ref: main
Expand Down
22 changes: 11 additions & 11 deletions .github/workflows/pull_request_maven_long_running.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,13 @@ jobs:
timeout-minutes: 120
steps:
- name: Checkout timefold-quickstarts
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
path: ./timefold-quickstarts
ref: ${{ github.event.pull_request.head.sha }} # The GHA event will pull the main branch by default, and we must specify the PR reference version
- name: Checkout timefold-solver (PR) # Checkout the PR branch first, if it exists
id: checkout-solver
uses: actions/checkout@v5
uses: actions/checkout@v6
continue-on-error: true
with:
repository: ${{ github.actor }}/timefold-solver
Expand All @@ -87,7 +87,7 @@ jobs:
fetch-depth: 0 # Otherwise merge will fail on account of not having history.
- name: Checkout timefold-solver (main) # Checkout the main branch if the PR branch does not exist
if: steps.checkout-solver.outcome != 'success'
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: TimefoldAI/timefold-solver
ref: main
Expand Down Expand Up @@ -131,13 +131,13 @@ jobs:
timeout-minutes: 120
steps:
- name: Checkout timefold-quickstarts
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
path: ./timefold-quickstarts
ref: ${{ github.event.pull_request.head.sha }} # The GHA event will pull the main branch by default, and we must specify the PR reference version
- name: Checkout timefold-solver (PR) # Checkout the PR branch first, if it exists
id: checkout-solver
uses: actions/checkout@v5
uses: actions/checkout@v6
continue-on-error: true
with:
repository: ${{ github.actor }}/timefold-solver
Expand All @@ -146,7 +146,7 @@ jobs:
fetch-depth: 0 # Otherwise merge will fail on account of not having history.
- name: Checkout timefold-solver (main) # Checkout the main branch if the PR branch does not exist
if: steps.checkout-solver.outcome != 'success'
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: TimefoldAI/timefold-solver
ref: main
Expand All @@ -155,7 +155,7 @@ jobs:

- name: Checkout timefold-solver-enterprise (PR) # Checkout the PR branch first, if it exists
id: checkout-solver-enterprise
uses: actions/checkout@v5
uses: actions/checkout@v6
continue-on-error: true
with:
repository: TimefoldAI/timefold-solver-enterprise
Expand All @@ -165,7 +165,7 @@ jobs:
fetch-depth: 0 # Otherwise merge will fail on account of not having history.
- name: Checkout timefold-solver-enterprise (main) # Checkout the main branch if the PR branch does not exist
if: steps.checkout-solver-enterprise.outcome != 'success'
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: TimefoldAI/timefold-solver-enterprise
ref: main
Expand Down Expand Up @@ -229,13 +229,13 @@ jobs:
timeout-minutes: 120
steps:
- name: Checkout timefold-quickstarts
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
path: ./timefold-quickstarts
ref: ${{ github.event.pull_request.head.sha }} # The GHA event will pull the main branch by default, and we must specify the PR reference version
- name: Checkout timefold-solver (PR) # Checkout the PR branch first, if it exists
id: checkout-solver
uses: actions/checkout@v5
uses: actions/checkout@v6
continue-on-error: true
with:
repository: ${{ github.actor }}/timefold-solver
Expand All @@ -244,7 +244,7 @@ jobs:
fetch-depth: 0 # Otherwise merge will fail on account of not having history.
- name: Checkout timefold-solver (main) # Checkout the main branch if the PR branch does not exist
if: steps.checkout-solver.outcome != 'success'
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: TimefoldAI/timefold-solver
ref: main
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ jobs:
runs-on: self-hosted
steps:
- name: Checkout timefold-quickstarts
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: TimefoldAI/timefold-quickstarts
path: ./timefold-quickstarts
ref: ${{ github.event.inputs.developmentBranch }}
fetch-depth: 0 # Otherwise merge will fail on account of not having history.

- name: Checkout timefold-solver
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: TimefoldAI/timefold-solver
path: ./timefold-solver
Expand Down
2 changes: 1 addition & 1 deletion java/hello-world/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

def timefoldVersion = "999-SNAPSHOT"
def logbackVersion = "1.5.20"
def logbackVersion = "1.5.21"
def junitVersion = "6.0.1"
def assertjVersion = "3.27.6"
def profile = System.properties['profile'] ?: ''
Expand Down
2 changes: 1 addition & 1 deletion java/hello-world/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<version.ai.timefold.solver>999-SNAPSHOT</version.ai.timefold.solver>
<version.org.assertj>3.27.6</version.org.assertj>
<version.org.junit.jupiter>6.0.1</version.org.junit.jupiter>
<version.ch.qos.logback>1.5.20</version.ch.qos.logback>
<version.ch.qos.logback>1.5.21</version.ch.qos.logback>

<version.compiler.plugin>3.14.1</version.compiler.plugin>
<version.surefire.plugin>3.5.4</version.surefire.plugin>
Expand Down
2 changes: 1 addition & 1 deletion java/spring-boot-integration/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
id "org.springframework.boot" version "3.5.7"
id "io.spring.dependency-management" version "1.1.7"
id 'org.graalvm.buildtools.native' version '0.11.2'
id 'org.graalvm.buildtools.native' version '0.11.3'
id "java"
}

Expand Down
Loading