@@ -41,18 +41,18 @@ jobs:
4141
4242 # Check out the current repository
4343 - name : Fetch Sources
44- uses : actions/checkout@v4
44+ uses : actions/checkout@v5
4545
4646 # Set up the Java environment for the next steps
4747 - name : Setup Java
48- uses : actions/setup-java@v4
48+ uses : actions/setup-java@v5
4949 with :
5050 distribution : zulu
5151 java-version : 21
5252
5353 # Setup Gradle
5454 - name : Setup Gradle
55- uses : gradle/actions/setup-gradle@v4
55+ uses : gradle/actions/setup-gradle@v5
5656
5757 # Build plugin
5858 - name : Build plugin
7171
7272 # Store an already-built plugin as an artifact for downloading
7373 - name : Upload artifact
74- uses : actions/upload-artifact@v4
74+ uses : actions/upload-artifact@v5
7575 with :
7676 name : ${{ steps.artifact.outputs.filename }}
7777 path : ./build/distributions/content/*/*
@@ -92,18 +92,18 @@ jobs:
9292
9393 # Check out the current repository
9494 - name : Fetch Sources
95- uses : actions/checkout@v4
95+ uses : actions/checkout@v5
9696
9797 # Set up the Java environment for the next steps
9898 - name : Setup Java
99- uses : actions/setup-java@v4
99+ uses : actions/setup-java@v5
100100 with :
101101 distribution : zulu
102102 java-version : 21
103103
104104 # Setup Gradle
105105 - name : Setup Gradle
106- uses : gradle/actions/setup-gradle@v4
106+ uses : gradle/actions/setup-gradle@v5
107107 with :
108108 cache-read-only : true
109109
@@ -114,7 +114,7 @@ jobs:
114114 # Collect Tests Result of failed tests
115115 - name : Collect Tests Result
116116 if : ${{ failure() }}
117- uses : actions/upload-artifact@v4
117+ uses : actions/upload-artifact@v5
118118 with :
119119 name : tests-result
120120 path : ${{ github.workspace }}/build/reports/tests
@@ -146,14 +146,14 @@ jobs:
146146
147147 # Check out the current repository
148148 - name : Fetch Sources
149- uses : actions/checkout@v4
149+ uses : actions/checkout@v5
150150 with :
151151 ref : ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit
152152 fetch-depth : 0 # a full history is required for pull request analysis
153153
154154 # Set up the Java environment for the next steps
155155 - name : Setup Java
156- uses : actions/setup-java@v4
156+ uses : actions/setup-java@v5
157157 with :
158158 distribution : zulu
159159 java-version : 21
@@ -180,18 +180,18 @@ jobs:
180180
181181 # Check out the current repository
182182 - name : Fetch Sources
183- uses : actions/checkout@v4
183+ uses : actions/checkout@v5
184184
185185 # Set up the Java environment for the next steps
186186 - name : Setup Java
187- uses : actions/setup-java@v4
187+ uses : actions/setup-java@v5
188188 with :
189189 distribution : zulu
190190 java-version : 21
191191
192192 # Setup Gradle
193193 - name : Setup Gradle
194- uses : gradle/actions/setup-gradle@v4
194+ uses : gradle/actions/setup-gradle@v5
195195 with :
196196 cache-read-only : true
197197
@@ -202,7 +202,7 @@ jobs:
202202 # Collect Plugin Verifier Result
203203 - name : Collect Plugin Verifier Result
204204 if : ${{ always() }}
205- uses : actions/upload-artifact@v4
205+ uses : actions/upload-artifact@v5
206206 with :
207207 name : pluginVerifier-result
208208 path : ${{ github.workspace }}/build/reports/pluginVerifier
@@ -220,7 +220,7 @@ jobs:
220220
221221 # Check out the current repository
222222 - name : Fetch Sources
223- uses : actions/checkout@v4
223+ uses : actions/checkout@v5
224224
225225 # Remove old release drafts by using the curl request for the available releases with a draft flag
226226 - name : Remove Old Release Drafts
0 commit comments