-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Ruben Gees <[email protected]>
- Loading branch information
Showing
2 changed files
with
9 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,18 +8,18 @@ jobs: | |
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v2.1.1 | ||
|
||
- name: Check Gradle wrapper | ||
uses: gradle/[email protected].2 | ||
uses: gradle/[email protected].3 | ||
|
||
- name: Set up JDK 11 | ||
uses: actions/[email protected] | ||
with: | ||
java-version: 11 | ||
|
||
- name: Set up Gradle Cache | ||
uses: actions/cache@v1.1.2 | ||
uses: actions/cache@v1.2.0 | ||
with: | ||
path: ~/.gradle/caches | ||
key: ${{ runner.OS }}-gradle-${{ hashFiles('**/versions.gradle') }} | ||
|
@@ -38,14 +38,14 @@ jobs: | |
run: ./gradlew ktlintCheck detekt build bundle | ||
|
||
- name: Store reports | ||
uses: actions/upload-artifact@v1.0.0 | ||
uses: actions/upload-artifact@v2.0.1 | ||
if: always() | ||
with: | ||
name: Reports | ||
path: build/reports | ||
|
||
- name: Store outputs | ||
uses: actions/upload-artifact@v1.0.0 | ||
uses: actions/upload-artifact@v2.0.1 | ||
if: always() | ||
with: | ||
name: Outputs | ||
|
@@ -58,19 +58,19 @@ jobs: | |
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v2.1.1 | ||
with: | ||
fetch-depth: '0' | ||
|
||
- name: Download outputs | ||
uses: actions/download-artifact@v1 | ||
uses: actions/download-artifact@v2.0.1 | ||
with: | ||
name: Outputs | ||
path: build/outputs | ||
|
||
- id: calculate-commit-range | ||
name: Calculate commit range | ||
uses: actions/github-script@0.8.0 | ||
uses: actions/github-script@v1.1.0 | ||
with: | ||
github-token: ${{github.token}} | ||
previews: 'antiope-preview' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters