Skip to content

Customize Your Mobile Home Tab Shortcuts


 
Get to your most important work faster by customizing the shortcuts in the My Work and Favorites sections on the Home tab. Tapping the overflow icon in either section will allow you to edit and reorder the items exactly the way you want.


Read more about GitHub Mobile and send us your feedback to help us improve.

You can now run Java projects faster on GitHub Actions by enabling dependency caching on the setup-java action. setup-java supports caching for both Gradle and Maven projects.

The following example enables caching for a Java project with Gradle:

steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v2
  with:
    distribution: 'temurin'
    java-version: '11'
    cache: 'gradle'
- run: ./gradlew build

For additional examples, visit the setup-java repository.

See more