@@ -34,15 +34,15 @@ jobs:
34
34
35
35
# Check out current repository
36
36
- name : Fetch Sources
37
- uses : actions/checkout@v2.4.0
37
+ uses : actions/checkout@v3.0.2
38
38
39
39
# Validate wrapper
40
40
- name : Gradle Wrapper Validation
41
41
42
42
43
43
# Setup Java 11 environment for the next steps
44
44
- name : Setup Java
45
- uses : actions/setup-java@v2
45
+ uses : actions/setup-java@v3
46
46
with :
47
47
distribution : zulu
48
48
java-version : 11
72
72
# Collect Tests Result of failed tests
73
73
- name : Collect Tests Result
74
74
if : ${{ failure() }}
75
- uses : actions/upload-artifact@v2
75
+ uses : actions/upload-artifact@v3
76
76
with :
77
77
name : tests-result
78
78
path : ${{ github.workspace }}/build/reports/tests
97
97
# # Collect Plugin Verifier Result
98
98
# - name: Collect Plugin Verifier Result
99
99
# if: ${{ always() }}
100
- # uses: actions/upload-artifact@v2
100
+ # uses: actions/upload-artifact@v3
101
101
# with:
102
102
# name: pluginVerifier-result
103
103
# path: ${{ github.workspace }}/build/reports/pluginVerifier
@@ -117,7 +117,7 @@ jobs:
117
117
echo "::set-output name=filename::${FILENAME:0:-4}"
118
118
# Store already-built plugin as an artifact for downloading
119
119
- name : Upload artifact
120
- uses : actions/upload-artifact@v2.2.4
120
+ uses : actions/upload-artifact@v3
121
121
with :
122
122
name : ${{ steps.artifact.outputs.filename }}
123
123
path : ./build/distributions/content/*/*
0 commit comments