Skip to content

Commit 9875cff

Browse files
committed
Fix CI workflow: Update upload-artifact from v3 to v4
- actions/upload-artifact@v3 is deprecated and causes workflow failures - Update to v4 to fix the automatic failure in GitHub Actions
1 parent 1c7ce20 commit 9875cff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,15 +55,15 @@ jobs:
5555

5656
- name: Upload test results
5757
if: always()
58-
uses: actions/upload-artifact@v3
58+
uses: actions/upload-artifact@v4
5959
with:
6060
name: test-results-java${{ matrix.java-version }}-gradle${{ matrix.gradle-version }}
6161
path: build/test-results/
6262
retention-days: 7
6363

6464
- name: Upload build artifacts
6565
if: matrix.java-version == '17' && matrix.gradle-version == '9.2'
66-
uses: actions/upload-artifact@v3
66+
uses: actions/upload-artifact@v4
6767
with:
6868
name: build-artifacts
6969
path: build/libs/*.jar

0 commit comments

Comments
 (0)