Skip to content

Commit bddf6ee

Browse files
authored
Merge branch 'main' into update-cloud-sdk
2 parents 63668aa + 511447b commit bddf6ee

File tree

6 files changed

+7
-5
lines changed

6 files changed

+7
-5
lines changed

.github/workflows/continuous-integration.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
7373
- name: "Slack Notification"
7474
if: ${{ github.ref == 'refs/heads/main' && failure() }}
75-
uses: slackapi/[email protected].0
75+
uses: slackapi/[email protected].1
7676
with:
7777
webhook: ${{ secrets.SLACK_WEBHOOK }}
7878
webhook-type: incoming-webhook

.github/workflows/deploy-snapshot.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040

4141
- name: "Slack Notification"
4242
if: failure()
43-
uses: slackapi/[email protected].0
43+
uses: slackapi/[email protected].1
4444
with:
4545
webhook: ${{ secrets.SLACK_WEBHOOK }}
4646
webhook-type: incoming-webhook

.github/workflows/e2e-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585

8686
- name: "Slack Notification"
8787
if: failure()
88-
uses: slackapi/[email protected].0
88+
uses: slackapi/[email protected].1
8989
with:
9090
webhook: ${{ secrets.SLACK_WEBHOOK }}
9191
webhook-type: incoming-webhook

.github/workflows/fosstars-report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676

7777
- name: "Slack Notification"
7878
if: failure()
79-
uses: slackapi/[email protected].0
79+
uses: slackapi/[email protected].1
8080
with:
8181
webhook: ${{ secrets.SLACK_WEBHOOK }}
8282
webhook-type: incoming-webhook

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
<system-stubs.version>2.1.3</system-stubs.version>
6969
<surefire.version>3.5.3</surefire.version>
7070
<springframework.version>6.2.9</springframework.version>
71-
<spring-ai.version>1.0.0</spring-ai.version>
71+
<spring-ai.version>1.0.1</spring-ai.version>
7272
<reactor-core.version>3.7.8</reactor-core.version>
7373
<dotenv-java.version>3.2.0</dotenv-java.version>
7474
<mockito.version>5.18.0</mockito.version>

sample-code/spring-app/src/test/java/com/sap/ai/sdk/app/controllers/ScenarioTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,13 @@
1010
import java.util.Optional;
1111
import lombok.SneakyThrows;
1212
import org.assertj.core.api.SoftAssertions;
13+
import org.junit.jupiter.api.Disabled;
1314
import org.junit.jupiter.api.DisplayName;
1415
import org.junit.jupiter.api.Test;
1516

1617
class ScenarioTest {
1718

19+
@Disabled("https://github.com/SAP/ai-sdk-java-backlog/issues/306")
1820
@Test
1921
@DisplayName(
2022
"Declared OpenAI models must be superset of our AI Core account's available OpenAI models")

0 commit comments

Comments
 (0)