Skip to content

Commit 17514f7

Browse files
committed
end-to-end as well
1 parent d384229 commit 17514f7

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/workflows/end-to-end-tests-2nd-workflow.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
steps:
1616
- id: 'step-0'
1717
name: 'Check out'
18-
uses: 'actions/checkout@v4'
18+
uses: 'actions/checkout@v5'
1919
- id: 'step-1'
2020
name: 'Set up JDK'
2121
uses: 'actions/setup-java@v5'

.github/workflows/end-to-end-tests.main.kts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ import io.github.typesafegithub.workflows.dsl.JobBuilder
2828
import io.github.typesafegithub.workflows.dsl.expressions.Contexts
2929
import io.github.typesafegithub.workflows.dsl.expressions.expr
3030
import io.github.typesafegithub.workflows.dsl.workflow
31+
import io.github.typesafegithub.workflows.yaml.CheckoutActionVersionSource
3132
import io.github.typesafegithub.workflows.yaml.DEFAULT_CONSISTENCY_CHECK_JOB_CONFIG
3233
import io.github.typesafegithub.workflows.updates.reportAvailableUpdates
3334
import java.time.Instant
@@ -51,6 +52,7 @@ workflow(
5152
env = mapOf(
5253
"GITHUB_TOKEN" to expr("secrets.GITHUB_TOKEN")
5354
),
55+
checkoutActionVersion = CheckoutActionVersionSource.InferFromClasspath(),
5456
additionalSteps = {
5557
publishToMavenLocal()
5658
},

.github/workflows/end-to-end-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
steps:
1818
- id: 'step-0'
1919
name: 'Check out'
20-
uses: 'actions/checkout@v4'
20+
uses: 'actions/checkout@v5'
2121
- id: 'step-1'
2222
name: 'Set up JDK'
2323
uses: 'actions/setup-java@v5'

0 commit comments

Comments
 (0)