From 446a0b34654758127d06d9d5768977312a781252 Mon Sep 17 00:00:00 2001 From: Karl Heinz Struggl Date: Wed, 5 Mar 2025 15:16:47 +0100 Subject: [PATCH 1/2] adds default issue types to issue templates --- .github/ISSUE_TEMPLATE/bug_report.yml | 1 + .github/ISSUE_TEMPLATE/feature.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 12e90739..ee627e11 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -1,6 +1,7 @@ name: 🐞 Bug Report description: Tell us about something that's not working the way we (probably) intend. labels: ["Platform: KMP", "Type: Bug"] +type: Bug body: - type: dropdown id: environment diff --git a/.github/ISSUE_TEMPLATE/feature.yml b/.github/ISSUE_TEMPLATE/feature.yml index 66dc3737..943db893 100644 --- a/.github/ISSUE_TEMPLATE/feature.yml +++ b/.github/ISSUE_TEMPLATE/feature.yml @@ -1,6 +1,7 @@ name: 💡 Feature Request description: Tell us about a problem our SDK could solve but doesn't. labels: ["Platform: KMP", "Type: Feature Request"] +type: Feature body: - type: textarea id: problem From 2f3e3e658ea9322385fd5c50e6c932d731f8641c Mon Sep 17 00:00:00 2001 From: Karl Heinz Struggl Date: Wed, 5 Mar 2025 15:20:31 +0100 Subject: [PATCH 2/2] updates actions/cache to v4 https://github.blog/changelog/2024-12-05-notice-of-upcoming-releases-and-breaking-changes-for-github-actions/#actions-cache-v1-v2-and-actions-toolkit-cache-package-closing-down --- .github/workflows/generate-dokka.yml | 2 +- .github/workflows/kotlin-multiplatform-gradle-plugin.yml | 4 ++-- .github/workflows/kotlin-multiplatform.yml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/generate-dokka.yml b/.github/workflows/generate-dokka.yml index b66cd518..4f0d9367 100644 --- a/.github/workflows/generate-dokka.yml +++ b/.github/workflows/generate-dokka.yml @@ -27,7 +27,7 @@ jobs: java-version: "11" - name: Cache Gradle packages - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: | ~/.gradle/caches diff --git a/.github/workflows/kotlin-multiplatform-gradle-plugin.yml b/.github/workflows/kotlin-multiplatform-gradle-plugin.yml index 646ecdd2..e9501f26 100644 --- a/.github/workflows/kotlin-multiplatform-gradle-plugin.yml +++ b/.github/workflows/kotlin-multiplatform-gradle-plugin.yml @@ -27,7 +27,7 @@ jobs: distribution: temurin - name: Cached Konan - uses: actions/cache@9b0c1fce7a93df8e3bb8926b0d6e9d89e92f20a7 #v3 + uses: actions/cache@v4 with: path: ~/.konan key: ${{ runner.os }}-konan-${{ hashFiles('**/*.gradle*') }}-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }} @@ -45,4 +45,4 @@ jobs: uses: codecov/codecov-action@5ecb98a3c6b747ed38dc09f787459979aebb39be # pin@v4 with: name: sentry-kotlin-multiplatform-gradle-plugin - token: ${{ secrets.CODECOV_TOKEN }} \ No newline at end of file + token: ${{ secrets.CODECOV_TOKEN }} diff --git a/.github/workflows/kotlin-multiplatform.yml b/.github/workflows/kotlin-multiplatform.yml index 2754d011..5605eb24 100644 --- a/.github/workflows/kotlin-multiplatform.yml +++ b/.github/workflows/kotlin-multiplatform.yml @@ -24,7 +24,7 @@ jobs: distribution: temurin - name: Cached Konan - uses: actions/cache@9b0c1fce7a93df8e3bb8926b0d6e9d89e92f20a7 #v3 + uses: actions/cache@v4 with: path: ~/.konan key: ${{ runner.os }}-konan-${{ hashFiles('**/*.gradle*') }}-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }} @@ -52,7 +52,7 @@ jobs: distribution: temurin - name: Cached Konan - uses: actions/cache@9b0c1fce7a93df8e3bb8926b0d6e9d89e92f20a7 #v3 + uses: actions/cache@v4 with: path: ~/.konan key: ${{ runner.os }}-konan-${{ hashFiles('**/*.gradle*') }}-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}