-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b4fd2cd
commit de97994
Showing
1 changed file
with
7 additions
and
7 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 |
---|---|---|
|
@@ -114,7 +114,7 @@ jobs: | |
uses: actions/[email protected] | ||
|
||
- name: "Unit test coverage cache" | ||
uses: actions/[email protected].1 | ||
uses: actions/[email protected].2 | ||
with: | ||
path: ${{ github.workspace }}/build/jacoco/** | ||
key: ${{ runner.os }}-jacoco-unitTest-${{ github.run_id }} | ||
|
@@ -127,7 +127,7 @@ jobs: | |
arguments: test | ||
|
||
- name: "Publish Unit Test Results" | ||
uses: EnricoMi/publish-unit-test-result-action@v2.17.1 | ||
uses: EnricoMi/publish-unit-test-result-action@v2.18.0 | ||
if: always() | ||
with: | ||
check_name: "Unit test results" | ||
|
@@ -153,7 +153,7 @@ jobs: | |
uses: actions/[email protected] | ||
|
||
- name: "Functional test coverage cache" | ||
uses: actions/[email protected].1 | ||
uses: actions/[email protected].2 | ||
with: | ||
path: ${{ github.workspace }}/build/jacoco/** | ||
key: ${{ runner.os }}-jacoco-functionalTest-${{ github.run_id }} | ||
|
@@ -166,7 +166,7 @@ jobs: | |
arguments: functionalTest | ||
|
||
- name: "Publish functional test results" | ||
uses: EnricoMi/publish-unit-test-result-action@v2.17.1 | ||
uses: EnricoMi/publish-unit-test-result-action@v2.18.0 | ||
if: always() | ||
with: | ||
check_name: "Functional test results" | ||
|
@@ -189,13 +189,13 @@ jobs: | |
uses: actions/[email protected] | ||
|
||
- name: "Load unit test coverage cache" | ||
uses: actions/[email protected].1 | ||
uses: actions/[email protected].2 | ||
with: | ||
path: ${{ github.workspace }}/build/jacoco/** | ||
key: ${{ runner.os }}-jacoco-unitTest-${{ github.run_id }} | ||
|
||
- name: "Load functional test coverage cache" | ||
uses: actions/[email protected].1 | ||
uses: actions/[email protected].2 | ||
with: | ||
path: ${{ github.workspace }}/build/jacoco/** | ||
key: ${{ runner.os }}-jacoco-functionalTest-${{ github.run_id }} | ||
|
@@ -228,7 +228,7 @@ jobs: | |
uses: actions/[email protected] | ||
|
||
- name: "Load compile cache" | ||
uses: actions/[email protected].1 | ||
uses: actions/[email protected].2 | ||
with: | ||
path: ${{ github.workspace }}/build/** | ||
key: ${{ runner.os }}-compile-${{ github.run_id }} | ||
|