Skip to content
Closed
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/build_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
- main

jobs:
build:

Check warning on line 13 in .github/workflows/build_test.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

build_test.yaml:13: overly broad permissions: default permissions used due to no permissions: block
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
Expand All @@ -18,7 +18,7 @@
api-level: [29]

steps:
- uses: actions/checkout@v4

Check failure on line 21 in .github/workflows/build_test.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 21 in .github/workflows/build_test.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

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

- name: Enable KVM group perms
run: |
Expand All @@ -31,20 +31,20 @@
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties

- name: Set Up JDK
uses: actions/setup-java@v4
uses: actions/setup-java@v6

Check failure on line 34 in .github/workflows/build_test.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 34 in .github/workflows/build_test.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

build_test.yaml:34: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
distribution: 'zulu' # See 'Supported distributions' for available options
java-version: '17'
cache: 'gradle'

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

Check failure on line 41 in .github/workflows/build_test.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 41 in .github/workflows/build_test.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

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

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

Check failure on line 44 in .github/workflows/build_test.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 44 in .github/workflows/build_test.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

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

- name: Run instrumentation tests
uses: reactivecircus/android-emulator-runner@v2

Check failure on line 47 in .github/workflows/build_test.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 47 in .github/workflows/build_test.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

build_test.yaml:47: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
api-level: ${{ matrix.api-level }}
arch: x86
Expand All @@ -53,7 +53,7 @@

- name: Upload test reports
if: always()
uses: actions/upload-artifact@v4

Check failure on line 56 in .github/workflows/build_test.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 56 in .github/workflows/build_test.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

build_test.yaml:56: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
name: test-reports-${{ matrix.api-level }}
path: ./app/build/reports/androidTests
Loading