Skip to content

Update deps

Update deps #406

Workflow file for this run

name: Check licenses
on: [pull_request, push]
jobs:
licenses:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
submodules: true
- name: Set up JDK 21
uses: actions/setup-java@b6effb05e454b25005698d916606bdc6ffcbf961 # v5.7.0
with:
distribution: 'temurin'
java-version: 21
cache: gradle
- name: Regenerate licenses
run: ./gradlew :app:generateLicenses --no-daemon --rerun
- name: Fail if assets/licenses.html is out of date
run: |
if ! git diff --exit-code -- assets/licenses.html; then
echo "::error::assets/licenses.html is out of date. Run './gradlew :app:generateLicenses' and commit the result."
exit 1
fi