Skip to content

Commit 41ada66

Browse files
committed
codecov token and new image
Signed-off-by: salaboy <[email protected]>
1 parent 24a99f0 commit 41ada66

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ jobs:
3333
run: ./mvnw clean install -B -q -DskipITs=true
3434
- name: Codecov
3535
uses: codecov/[email protected]
36+
with:
37+
token: ${{ secrets.CODECOV_TOKEN }}
3638
- name: Upload test report for sdk
3739
uses: actions/upload-artifact@v5
3840
with:

testcontainers-dapr/src/main/java/io/dapr/testcontainers/WorkflowDashboardContainer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public class WorkflowDashboardContainer extends GenericContainer<WorkflowDashboa
3131
private static final Yaml YAML_MAPPER = YamlMapperFactory.create();
3232
private static final YamlConverter<Component> COMPONENT_CONVERTER = new ComponentYamlConverter(YAML_MAPPER);
3333
public static final DockerImageName DEFAULT_IMAGE_NAME = DockerImageName
34-
.parse("public.ecr.aws/diagrid-dev/diagrid-dashboard:latest");
34+
.parse("ghcr.io/diagridio/diagrid-dashboard:0.0.1");
3535
private int dashboardPort = 8080;
3636
private Component stateStoreComponent;
3737

testcontainers-dapr/src/test/java/io/dapr/testcontainers/DaprWorkflowDashboardTest.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717

1818
import java.util.Collections;
1919

20+
import static org.junit.jupiter.api.Assertions.assertEquals;
2021
import static org.junit.jupiter.api.Assertions.assertFalse;
2122
import static org.junit.jupiter.api.Assertions.assertNotNull;
2223
import static org.junit.jupiter.api.Assertions.assertTrue;
@@ -33,6 +34,8 @@ public void dashboardTest() {
3334
dashboard.configure();
3435
assertNotNull(dashboard.getEnvMap().get("COMPONENT_FILE"));
3536
assertFalse(dashboard.getEnvMap().get("COMPONENT_FILE").isEmpty());
37+
assertEquals(8080, dashboard.getPort());
38+
3639
}
3740
}
3841
}

0 commit comments

Comments
 (0)