Skip to content

Commit 0a5adf2

Browse files
committed
Use upload-artifact v3 for now.
v4 doesnt support multiple artifacts with the same name
1 parent b015973 commit 0a5adf2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/gradle-build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Build with Gradle
2222
run: ./gradlew build
2323
- name: Archive artifacts
24-
uses: actions/upload-artifact@v4
24+
uses: actions/upload-artifact@v3
2525
with:
2626
name: libs-and-reports
2727
path: |

.github/workflows/jcstress-manual.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Build with Gradle
2828
run: ./gradlew jcstress -Pmode="${{ github.event.inputs.mode }}"
2929
- name: Archive artifacts
30-
uses: actions/upload-artifact@v4
30+
uses: actions/upload-artifact@v3
3131
with:
3232
name: jcstress-report-manual
3333
path: build/reports/jcstress

.github/workflows/jcstress-quick.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Build with Gradle
2222
run: ./gradlew jcstress -Pmode=quick
2323
- name: Archive artifacts
24-
uses: actions/upload-artifact@v4
24+
uses: actions/upload-artifact@v3
2525
with:
2626
name: jcstress-report-quick
2727
path: build/reports/jcstress

0 commit comments

Comments
 (0)