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
2 changes: 1 addition & 1 deletion .github/workflows/agent.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,29 +20,29 @@
cancel-in-progress: true

jobs:
agent-build:

Check warning on line 23 in .github/workflows/agent.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

agent.yaml:23: overly broad permissions: default permissions used due to no permissions: block
name: "Agent build & test"
runs-on: macos-26
timeout-minutes: 45

steps:
- name: Checkout
uses: actions/checkout@v7

Check failure on line 30 in .github/workflows/agent.yaml

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 30 in .github/workflows/agent.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

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

- name: Copy CI gradle.properties
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties

- name: Set up JDK 21
uses: actions/setup-java@v5
uses: actions/setup-java@v6

Check failure on line 36 in .github/workflows/agent.yaml

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 36 in .github/workflows/agent.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

agent.yaml:36: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
distribution: 'zulu'
java-version: 21

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

Check failure on line 42 in .github/workflows/agent.yaml

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 42 in .github/workflows/agent.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

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

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

Check failure on line 45 in .github/workflows/agent.yaml

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 45 in .github/workflows/agent.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

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

- name: Run spotless
run: ./gradlew spotlessCheck
Expand All @@ -57,7 +57,7 @@
working-directory: agent

- name: Upload Agent APKs
uses: actions/upload-artifact@v7

Check failure on line 60 in .github/workflows/agent.yaml

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 60 in .github/workflows/agent.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

agent.yaml:60: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
name: agent-apks
path: agent/app/build/outputs/apk/**/*.apk
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/chatapp.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,29 +20,29 @@
cancel-in-progress: true

jobs:
chatapp-build:

Check warning on line 23 in .github/workflows/chatapp.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

chatapp.yaml:23: overly broad permissions: default permissions used due to no permissions: block
name: "ChatApp build & test"
runs-on: macos-26
timeout-minutes: 45

steps:
- name: Checkout
uses: actions/checkout@v7

Check failure on line 30 in .github/workflows/chatapp.yaml

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 30 in .github/workflows/chatapp.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

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

- name: Copy CI gradle.properties
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties

- name: Set up JDK 21
uses: actions/setup-java@v5
uses: actions/setup-java@v6

Check failure on line 36 in .github/workflows/chatapp.yaml

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 36 in .github/workflows/chatapp.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

chatapp.yaml:36: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
distribution: 'zulu'
java-version: 21

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

Check failure on line 42 in .github/workflows/chatapp.yaml

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 42 in .github/workflows/chatapp.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

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

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

Check failure on line 45 in .github/workflows/chatapp.yaml

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 45 in .github/workflows/chatapp.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

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

- name: Run spotless
run: ./gradlew spotlessCheck
Expand All @@ -57,7 +57,7 @@
working-directory: ChatApp

- name: Upload ChatApp APKs
uses: actions/upload-artifact@v7

Check failure on line 60 in .github/workflows/chatapp.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

chatapp.yaml:60: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
name: chatapp-apks
path: |
Expand Down
14 changes: 7 additions & 7 deletions ChatApp/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
[versions]
agp = "9.3.1"
appfunctions = "1.0.0-alpha10"
agp = "9.3.2"
appfunctions = "1.0.0-alpha11"
kotlin = "2.4.10"
coreKtx = "1.19.0"
junit = "4.13.2"
junitVersion = "1.3.0"
espressoCore = "3.7.0"
lifecycleRuntimeKtx = "2.11.0"
activityCompose = "1.13.0"
composeBom = "2026.06.01"
composeMaterialIconsAndroid = "1.11.4"
composeBom = "2026.08.00"
composeMaterialIconsAndroid = "1.12.0"
composeMaterialIconsCore = "1.7.8"
hilt = "2.60.1"
androidxHiltNavigationCompose = "1.4.0"
ksp = "2.3.10"
spotless = "8.8.0"
ksp = "2.3.11"
spotless = "8.10.1"
truth = "1.4.5"
coil = "2.7.0"
wearCompose = "1.6.2"
wearComposeMaterial3 = "1.6.2"
navigation3 = "1.1.4"
navigation3 = "1.1.7"
kotlinxSerialization = "1.11.0"
#noinspection UnusedVersionCatalogEntry - Accessed dynamically
ktlint = "1.2.1"
Expand Down
2 changes: 1 addition & 1 deletion ChatApp/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Mon May 18 15:51:40 CEST 2026
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-9.6.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.7.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
20 changes: 10 additions & 10 deletions agent/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,35 +1,35 @@
[versions]
agp = "9.3.1"
agp = "9.3.2"
lifecycleViewmodelCompose = "2.11.0"
kotlin = "2.4.10"
coreKtx = "1.19.0"
junit = "4.13.2"
junitVersion = "1.3.0"
espressoCore = "3.7.0"
appcompat = "1.7.1"
appcompat = "1.8.0"
material = "1.14.0"
composeBom = "2026.06.01"
composeBom = "2026.08.00"
material3 = "1.4.0"
activityCompose = "1.13.0"
navigationCompose = "2.9.8"
navigationCompose = "2.10.0"
robolectric = "4.16.1"
coroutines = "1.11.0"
androidxTestCore = "1.7.0"
spotless = "8.8.0"
spotless = "8.10.1"
mockk = "1.14.11"
ksp = "2.3.10"
ksp = "2.3.11"
hilt = "2.60.1"
androidxHiltNavigationCompose = "1.4.0"
appfunctions = "1.0.0-alpha10"
appfunctions = "1.0.0-alpha11"
datastore = "1.2.1"
screenshot = "0.0.1-alpha15"
screenshot = "0.0.1-alpha16"
coil = "2.7.0"
room = "2.8.4"
ktor = "3.5.1"
ktor = "3.5.2"
kotlinxSerialization = "1.11.0"
playServicesOssLicenses = "17.5.1"
ossLicensesPlugin = "0.13.0"
multiplatformMarkdownRenderer = "0.43.0"
multiplatformMarkdownRenderer = "0.45.0"
#noinspection UnusedVersionCatalogEntry - Accessed dynamically
ktlint = "1.2.1"

Expand Down
2 changes: 1 addition & 1 deletion agent/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-9.6.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.7.1-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
Loading