Skip to content
Open
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
10 changes: 5 additions & 5 deletions .github/workflows/get-started.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: get-started

Check warning on line 1 in .github/workflows/get-started.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

get-started.yml:1: overly broad permissions: default permissions used due to no permissions: block

on:
workflow_dispatch:
Expand All @@ -24,7 +24,7 @@
GRADLE_ENCRYPTION_KEY: CEehTVQluq6Ci3k7XSPctw==

jobs:
androidBuild:

Check warning on line 27 in .github/workflows/get-started.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

get-started.yml:27: overly broad permissions: default permissions used due to no permissions: block
runs-on: ubuntu-latest
defaults:
run:
Expand All @@ -32,21 +32,21 @@

steps:
- name: Checkout source code
uses: actions/checkout@v4
uses: actions/checkout@v7

Check failure on line 35 in .github/workflows/get-started.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 35 in .github/workflows/get-started.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

get-started.yml:35: unpinned action reference: action is not pinned to a hash (required by blanket policy)

- name: Set up JDK 17
uses: actions/setup-java@v4
uses: actions/setup-java@v5

Check failure on line 38 in .github/workflows/get-started.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 38 in .github/workflows/get-started.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

get-started.yml:38: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
java-version: '17'
distribution: 'zulu'

- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
uses: gradle/actions/setup-gradle@v6

Check failure on line 44 in .github/workflows/get-started.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 44 in .github/workflows/get-started.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

get-started.yml:44: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
cache-encryption-key: ${{ env.GRADLE_ENCRYPTION_KEY }}

- name: Setup Android SDK
uses: android-actions/setup-android@v3
uses: android-actions/setup-android@v4

Check failure on line 49 in .github/workflows/get-started.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 49 in .github/workflows/get-started.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

get-started.yml:49: unpinned action reference: action is not pinned to a hash (required by blanket policy)

- name: Run Spotless check
run: ./gradlew spotlessCheck --stacktrace
Expand All @@ -54,14 +54,14 @@
- name: Build project
run: ./gradlew assembleDebug lintDebug --stacktrace

iosBuild:

Check warning on line 57 in .github/workflows/get-started.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

get-started.yml:57: overly broad permissions: default permissions used due to no permissions: block
runs-on: macos-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v7

Check failure on line 61 in .github/workflows/get-started.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 61 in .github/workflows/get-started.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

get-started.yml:61: unpinned action reference: action is not pinned to a hash (required by blanket policy)

- name: Run xcodebuild
uses: mxcl/xcodebuild@v3

Check failure on line 64 in .github/workflows/get-started.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 64 in .github/workflows/get-started.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

get-started.yml:64: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
xcode: ^16
scheme: KMPGetStartedCodelab
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/migrate-room.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: migrate-room

Check warning on line 1 in .github/workflows/migrate-room.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

migrate-room.yml:1: overly broad permissions: default permissions used due to no permissions: block

on:
workflow_dispatch:
Expand All @@ -24,7 +24,7 @@
GRADLE_ENCRYPTION_KEY: CEehTVQluq6Ci3k7XSPctw==

jobs:
androidBuild:

Check warning on line 27 in .github/workflows/migrate-room.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

migrate-room.yml:27: overly broad permissions: default permissions used due to no permissions: block
runs-on: ubuntu-latest
defaults:
run:
Expand All @@ -32,21 +32,21 @@

steps:
- name: Checkout source code
uses: actions/checkout@v4
uses: actions/checkout@v7

Check failure on line 35 in .github/workflows/migrate-room.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 35 in .github/workflows/migrate-room.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

migrate-room.yml:35: unpinned action reference: action is not pinned to a hash (required by blanket policy)

- name: Set up JDK 17
uses: actions/setup-java@v4
uses: actions/setup-java@v5

Check failure on line 38 in .github/workflows/migrate-room.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 38 in .github/workflows/migrate-room.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

migrate-room.yml:38: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
java-version: '17'
distribution: 'zulu'

- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
uses: gradle/actions/setup-gradle@v6

Check failure on line 44 in .github/workflows/migrate-room.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 44 in .github/workflows/migrate-room.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

migrate-room.yml:44: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
cache-encryption-key: ${{ env.GRADLE_ENCRYPTION_KEY }}

- name: Setup Android SDK
uses: android-actions/setup-android@v3
uses: android-actions/setup-android@v4

Check failure on line 49 in .github/workflows/migrate-room.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

migrate-room.yml:49: unpinned action reference: action is not pinned to a hash (required by blanket policy)

- name: Run Spotless check
run: ./gradlew spotlessCheck --stacktrace
Expand All @@ -54,11 +54,11 @@
- name: Build project
run: ./gradlew assembleDebug lintDebug --stacktrace

iosBuild:

Check warning on line 57 in .github/workflows/migrate-room.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

migrate-room.yml:57: overly broad permissions: default permissions used due to no permissions: block
runs-on: macos-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Run xcodebuild
uses: mxcl/xcodebuild@v3
Expand Down
8 changes: 4 additions & 4 deletions get-started/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@
min-sdk = "26"
target-sdk = "35"
compile-sdk = "35"
agp = "8.11.1"
androidx-activityCompose = "1.10.1"
agp = "9.3.1"
androidx-activityCompose = "1.13.0"
androidx-room = "2.6.1"
androidx-lifecycle = "2.8.7"
kotlin = "2.2.0"
kotlinx-coroutines = "1.10.2"
spotless = "7.2.1"
composeBom = "2025.07.00"
spotless = "8.10.0"
composeBom = "2026.08.00"
ktlint = "1.3.1"


Expand Down
2 changes: 1 addition & 1 deletion get-started/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.7.0-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
16 changes: 8 additions & 8 deletions migrate-room/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,18 @@
min-sdk = "26"
target-sdk = "35"
compile-sdk = "35"
agp = "8.11.1"
androidx-activityCompose = "1.10.1"
androidx-room = "2.7.2"
androidx-lifecycle = "2.9.2"
agp = "9.3.1"
androidx-activityCompose = "1.13.0"
androidx-room = "2.8.4"
androidx-lifecycle = "2.11.0"
kotlin = "2.2.0"
kotlinx-coroutines = "1.10.2"
ksp = "2.2.0-2.0.2"
ktorVersion = "3.2.3"
spotless = "7.2.1"
composeBom = "2025.07.00"
ktorVersion = "3.5.2"
spotless = "8.10.0"
composeBom = "2026.08.00"
ktlint = "1.3.1"
hilt = "2.57"
hilt = "2.60.1"
androidx-testCore = "1.7.0"
androidx-testRunner = "1.7.0"
androidx-junit = "1.3.0"
Expand Down
2 changes: 1 addition & 1 deletion migrate-room/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.7.0-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
Loading