Skip to content

Commit b7b5ecc

Browse files
authored
chore: Adds default issue types to issue templates (#340)
* adds default issue types to issue templates * 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
1 parent f22d5c9 commit b7b5ecc

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: 🐞 Bug Report
22
description: Tell us about something that's not working the way we (probably) intend.
33
labels: ["Platform: KMP", "Type: Bug"]
4+
type: Bug
45
body:
56
- type: dropdown
67
id: environment

.github/ISSUE_TEMPLATE/feature.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: 💡 Feature Request
22
description: Tell us about a problem our SDK could solve but doesn't.
33
labels: ["Platform: KMP", "Type: Feature Request"]
4+
type: Feature
45
body:
56
- type: textarea
67
id: problem

.github/workflows/generate-dokka.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
java-version: "11"
2828

2929
- name: Cache Gradle packages
30-
uses: actions/cache@v2
30+
uses: actions/cache@v4
3131
with:
3232
path: |
3333
~/.gradle/caches

.github/workflows/kotlin-multiplatform-gradle-plugin.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
distribution: temurin
2828

2929
- name: Cached Konan
30-
uses: actions/cache@9b0c1fce7a93df8e3bb8926b0d6e9d89e92f20a7 #v3
30+
uses: actions/cache@v4
3131
with:
3232
path: ~/.konan
3333
key: ${{ runner.os }}-konan-${{ hashFiles('**/*.gradle*') }}-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}
@@ -45,4 +45,4 @@ jobs:
4545
uses: codecov/codecov-action@5ecb98a3c6b747ed38dc09f787459979aebb39be # pin@v4
4646
with:
4747
name: sentry-kotlin-multiplatform-gradle-plugin
48-
token: ${{ secrets.CODECOV_TOKEN }}
48+
token: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/kotlin-multiplatform.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
distribution: temurin
2525

2626
- name: Cached Konan
27-
uses: actions/cache@9b0c1fce7a93df8e3bb8926b0d6e9d89e92f20a7 #v3
27+
uses: actions/cache@v4
2828
with:
2929
path: ~/.konan
3030
key: ${{ runner.os }}-konan-${{ hashFiles('**/*.gradle*') }}-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}
@@ -52,7 +52,7 @@ jobs:
5252
distribution: temurin
5353

5454
- name: Cached Konan
55-
uses: actions/cache@9b0c1fce7a93df8e3bb8926b0d6e9d89e92f20a7 #v3
55+
uses: actions/cache@v4
5656
with:
5757
path: ~/.konan
5858
key: ${{ runner.os }}-konan-${{ hashFiles('**/*.gradle*') }}-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}

0 commit comments

Comments
 (0)