Skip to content
Closed
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/issue-management-stale-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
pull-requests: write # for actions/stale to close stale PRs
runs-on: ubuntu-latest
steps:
- uses: actions/stale@3a9db7e6a41a89f618792c92c0e97cc736e1b13f # v10.0.0
- uses: actions/stale@5f858e3efba33a5ca4407a664cc011ad407f2008 # v10.1.0
with:
days-before-stale: 7
days-before-close: 7
Expand All @@ -31,7 +31,7 @@ jobs:
This PR has been labeled as stale due to lack of activity and needing author feedback.
It will be automatically closed if there is no further activity over the next 7 days.

- uses: actions/stale@3a9db7e6a41a89f618792c92c0e97cc736e1b13f # v10.0.0
- uses: actions/stale@5f858e3efba33a5ca4407a664cc011ad407f2008 # v10.1.0
with:
days-before-stale: 365
days-before-close: 0
Expand All @@ -46,7 +46,7 @@ jobs:
# "needs author feedback" exemption: so that it won't remove the stale label added by the first action
exempt-issue-labels: "stale,needs author feedback"

- uses: actions/stale@3a9db7e6a41a89f618792c92c0e97cc736e1b13f # v10.0.0
- uses: actions/stale@5f858e3efba33a5ca4407a664cc011ad407f2008 # v10.1.0
with:
days-before-issue-stale: -1
days-before-issue-close: -1
Expand Down
7 changes: 2 additions & 5 deletions buildSrc/src/main/kotlin/otel.java-conventions.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -147,10 +147,11 @@ dependencies {

testing {
suites.withType(JvmTestSuite::class).configureEach {
useJUnitJupiter("5.13.4")

dependencies {
implementation(project(project.path))

implementation(enforcedPlatform("org.junit:junit-bom:5.13.4"))
implementation(enforcedPlatform("org.testcontainers:testcontainers-bom:1.21.3"))
implementation(enforcedPlatform("com.google.guava:guava-bom:33.5.0-jre"))
implementation(enforcedPlatform("com.linecorp.armeria:armeria-bom:1.33.4"))
Expand All @@ -159,16 +160,12 @@ testing {
compileOnly("com.google.errorprone:error_prone_annotations")
compileOnly("com.google.code.findbugs:jsr305")

implementation("org.junit.jupiter:junit-jupiter-api")
implementation("org.junit.jupiter:junit-jupiter-params")
implementation("org.mockito:mockito-core")
implementation("org.mockito:mockito-junit-jupiter")
implementation("org.assertj:assertj-core")
implementation("org.awaitility:awaitility")
implementation("io.github.netmikey.logunit:logunit-jul")

runtimeOnly("org.junit.jupiter:junit-jupiter-engine")
runtimeOnly("org.junit.platform:junit-platform-launcher")
}
}
}
Expand Down