From 3f7cea655b66b9724df1c434b86e5ddf6bd829cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Kautler?= Date: Wed, 22 Jan 2025 19:47:16 +0100 Subject: [PATCH] work around KT-69145 --- .github/workflows/branches-and-prs.main.kts | 5 +++++ .github/workflows/codeql-analysis.main.kts | 5 +++++ .github/workflows/docs-pr.main.kts | 5 +++++ .github/workflows/release.main.kts | 5 +++++ 4 files changed, 20 insertions(+) diff --git a/.github/workflows/branches-and-prs.main.kts b/.github/workflows/branches-and-prs.main.kts index b278e7be54..0a24744647 100755 --- a/.github/workflows/branches-and-prs.main.kts +++ b/.github/workflows/branches-and-prs.main.kts @@ -17,6 +17,11 @@ */ @file:Import("common.main.kts") + +@file:Repository("https://repo.maven.apache.org/maven2/") +// work-around for https://youtrack.jetbrains.com/issue/KT-69145 +@file:DependsOn("io.github.typesafegithub:github-workflows-kt:3.2.0") + @file:Repository("https://bindings.krzeminski.it/") @file:DependsOn("actions:checkout:v4") @file:DependsOn("codecov:codecov-action:v5") diff --git a/.github/workflows/codeql-analysis.main.kts b/.github/workflows/codeql-analysis.main.kts index 5b914c4e7e..5b6378f80f 100755 --- a/.github/workflows/codeql-analysis.main.kts +++ b/.github/workflows/codeql-analysis.main.kts @@ -17,6 +17,11 @@ */ @file:Import("common.main.kts") + +@file:Repository("https://repo.maven.apache.org/maven2/") +// work-around for https://youtrack.jetbrains.com/issue/KT-69145 +@file:DependsOn("io.github.typesafegithub:github-workflows-kt:3.2.0") + @file:Repository("https://bindings.krzeminski.it/") @file:DependsOn("actions:checkout:v4") @file:DependsOn("github:codeql-action__analyze:v3") diff --git a/.github/workflows/docs-pr.main.kts b/.github/workflows/docs-pr.main.kts index e3c9c04448..092fcbfc02 100755 --- a/.github/workflows/docs-pr.main.kts +++ b/.github/workflows/docs-pr.main.kts @@ -17,6 +17,11 @@ */ @file:Import("common.main.kts") + +@file:Repository("https://repo.maven.apache.org/maven2/") +// work-around for https://youtrack.jetbrains.com/issue/KT-69145 +@file:DependsOn("io.github.typesafegithub:github-workflows-kt:3.2.0") + @file:Repository("https://bindings.krzeminski.it/") @file:DependsOn("actions:checkout:v4") @file:DependsOn("actions:upload-artifact:v4") diff --git a/.github/workflows/release.main.kts b/.github/workflows/release.main.kts index c32455ad46..b96b804f62 100755 --- a/.github/workflows/release.main.kts +++ b/.github/workflows/release.main.kts @@ -17,6 +17,11 @@ */ @file:Import("common.main.kts") + +@file:Repository("https://repo.maven.apache.org/maven2/") +// work-around for https://youtrack.jetbrains.com/issue/KT-69145 +@file:DependsOn("io.github.typesafegithub:github-workflows-kt:3.2.0") + @file:Repository("https://bindings.krzeminski.it/") @file:DependsOn("actions:checkout:v4") @file:DependsOn("codecov:codecov-action:v5")